Deprecate Feature Bits & Subscription Bits

This commit is contained in:
AconiteGodOfSWG
2021-08-15 05:42:30 -04:00
parent 8a2b1bf0e8
commit 2394d6210a
95 changed files with 142 additions and 748 deletions
@@ -21696,10 +21696,10 @@ public class base_class
{
return _getAccountNumLots(getLongWithNull(player));
}
/**
* Find out what game features this player has purchased
* @param player The player (creature object)
* @return A 32bit bit-vector indicating the game features this player has purchased.
* @deprecated
* todo to be removed
*/
private static native int _getGameFeatureBits(long player);
public static int getGameFeatureBits(obj_id player)
@@ -21707,9 +21707,8 @@ public class base_class
return _getGameFeatureBits(getLongWithNull(player));
}
/**
* Find out what subscription features this player has purchased
* @param player The player (creature object)
* @return A 32bit bit-vector indicating the subscription features this player has purchased.
* @deprecated
* todo to be removed
*/
private static native int _getSubscriptionFeatureBits(long player);
public static int getSubscriptionFeatureBits(obj_id player)