LD flag is now removed on logging in

This commit is contained in:
Treeku
2013-12-16 05:48:11 +00:00
parent dce213cab1
commit a0da317c9b
2 changed files with 14 additions and 2 deletions
@@ -698,4 +698,13 @@ public class PlayerObject extends IntangibleObject {
}
}
/*
* @return True if specified flag(s) are enabled
*/
public boolean isSet(int flags) {
synchronized(objectMutex) {
return ((flagBitmask & flags) == flags);
}
}
}