Spigot 1.8: More deprecation
This commit is contained in:
parent
648ef2070e
commit
acb0717644
4 changed files with 6 additions and 5 deletions
|
@ -47,7 +47,7 @@ public class FeatureBlockItemSpawn extends CoreModule<LimitedCreative> implement
|
|||
private void scheduleCleanUp() {
|
||||
if (cleanup.maxTime == 0) { // if not scheduled yet
|
||||
cleanup.maxTime = System.currentTimeMillis();
|
||||
plugin.getServer().getScheduler().runTaskLater(plugin, cleanup, TICK_OFFSET);
|
||||
cleanup.runTaskLater(plugin, TICK_OFFSET);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -69,6 +69,7 @@ public class FeatureSwitchGameMode extends CoreModule<LimitedCreative> {
|
|||
return SwitchGameModePermissions.ALL.getPermission(subPerm);
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
protected boolean changeGameMode(CommandContext context, String player, GameMode tgm, IAbstractPermission permission) throws MissingPermissionCommandException, CommandException {
|
||||
Player target = null;
|
||||
if (player != null && !player.isEmpty()) {
|
||||
|
|
|
@ -4,7 +4,6 @@ import org.bukkit.Bukkit;
|
|||
|
||||
import de.jaschastarke.hooking.BooleanHooker;
|
||||
import de.jaschastarke.hooking.GetHooker;
|
||||
import de.jaschastarke.minecraft.limitedcreative.hooks.AuthMeHooks;
|
||||
import de.jaschastarke.minecraft.limitedcreative.hooks.MultiVerseHooks;
|
||||
import de.jaschastarke.minecraft.limitedcreative.hooks.PlayerCheckHooker;
|
||||
import de.jaschastarke.minecraft.limitedcreative.hooks.WorldTypeHooker;
|
||||
|
@ -20,6 +19,7 @@ public final class Hooks {
|
|||
return Bukkit.getServer().getPluginManager().isPluginEnabled(pluginName);
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public static void inizializeHooks(LimitedCreative plugin) {
|
||||
IsLoggedIn.clearHooks();
|
||||
DefaultWorldGameMode.clearHooks();
|
||||
|
@ -27,7 +27,7 @@ public final class Hooks {
|
|||
InventoryIncompatible.clearHooks();
|
||||
|
||||
if (isAuthMePresent()) {
|
||||
new AuthMeHooks(plugin);
|
||||
new de.jaschastarke.minecraft.limitedcreative.hooks.AuthMeHooks(plugin);
|
||||
}
|
||||
if (isXAuth20Present()) {
|
||||
new xAuthHooks(plugin);
|
||||
|
|
|
@ -10,7 +10,6 @@ import org.bukkit.inventory.ItemStack;
|
|||
|
||||
import de.jaschastarke.bukkit.lib.CoreModule;
|
||||
import de.jaschastarke.minecraft.limitedcreative.inventories.ArmoryConfig;
|
||||
import de.jaschastarke.minecraft.limitedcreative.inventories.AuthMeInventories;
|
||||
import de.jaschastarke.minecraft.limitedcreative.inventories.Inventory;
|
||||
import de.jaschastarke.minecraft.limitedcreative.inventories.InventoryConfig;
|
||||
import de.jaschastarke.minecraft.limitedcreative.inventories.InventoryPermissions;
|
||||
|
@ -34,6 +33,7 @@ public class ModInventories extends CoreModule<LimitedCreative> {
|
|||
return "Inventory";
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
@Override
|
||||
public void initialize(ModuleEntry<IModule> entry) {
|
||||
super.initialize(entry);
|
||||
|
@ -42,7 +42,7 @@ public class ModInventories extends CoreModule<LimitedCreative> {
|
|||
armor_config = config.registerSection(new ArmoryConfig(this));
|
||||
|
||||
if (Hooks.isAuthMePresent()) {
|
||||
addModule(new AuthMeInventories(plugin, this));
|
||||
addModule(new de.jaschastarke.minecraft.limitedcreative.inventories.AuthMeInventories(plugin, this));
|
||||
}
|
||||
String incomp = Hooks.InventoryIncompatible.test();
|
||||
if (config.getEnabled() && incomp != null) {
|
||||
|
|
Loading…
Reference in a new issue