diff --git a/sku.0/sys.server/compiled/game/script/base_class.java b/sku.0/sys.server/compiled/game/script/base_class.java index b937ce59a..ebd676820 100755 --- a/sku.0/sys.server/compiled/game/script/base_class.java +++ b/sku.0/sys.server/compiled/game/script/base_class.java @@ -21697,33 +21697,6 @@ public class base_class return _getAccountNumLots(getLongWithNull(player)); } - /** - * @deprecated - * todo to be removed - */ - private static native int _getGameFeatureBits(long player); - public static int getGameFeatureBits(obj_id player) - { - return _getGameFeatureBits(getLongWithNull(player)); - } - /** - * @deprecated - * todo to be removed - */ - private static native int _getSubscriptionFeatureBits(long player); - public static int getSubscriptionFeatureBits(obj_id player) - { - return _getSubscriptionFeatureBits(getLongWithNull(player)); - } - /** - * @deprecated - * todo to be removed - */ - private static native boolean _isFreeTrialAccount(long player); - public static boolean isFreeTrialAccount(obj_id player) - { - return _isFreeTrialAccount(getLongWithNull(player)); - } /** * Set this player's station id with the desired completed tutorial boolean * @param player The player (creature object) diff --git a/sku.0/sys.server/compiled/game/script/library/features.java b/sku.0/sys.server/compiled/game/script/library/features.java deleted file mode 100755 index 578b1ac09..000000000 --- a/sku.0/sys.server/compiled/game/script/library/features.java +++ /dev/null @@ -1,15 +0,0 @@ -package script.library; - -import script.obj_id; - -public class features extends script.base_script -{ - public features() - { - } - - public static boolean isSpaceEdition(obj_id player) throws InterruptedException - { - return true; - } -} diff --git a/sku.0/sys.server/compiled/game/script/library/guild.java b/sku.0/sys.server/compiled/game/script/library/guild.java index 45650d116..218f38b94 100755 --- a/sku.0/sys.server/compiled/game/script/library/guild.java +++ b/sku.0/sys.server/compiled/game/script/library/guild.java @@ -340,11 +340,6 @@ public class guild extends script.base_script } public static int create(obj_id actor, String guildName, String guildAbbrev) throws InterruptedException { - if (isFreeTrialAccount(actor)) - { - sendSystemMessage(actor, SID_NO_FREE_TRIAL); - return 0; - } if (getGuildId(actor) != 0) { sendSystemMessage(actor, SID_GUILD_CREATE_FAIL_IN_GUILD);