This commit is contained in:
Light2
2013-12-28 19:17:41 +01:00
55 changed files with 1058 additions and 197 deletions
@@ -147,6 +147,12 @@ public class TangibleObject extends SWGObject {
}
}
public boolean getOption(int option) {
synchronized(objectMutex) {
return ((optionsBitmask & option) == option);
}
}
public void addOption(int option) {
setOptionsBitmask(getOptionsBitmask() | option);
}