diff --git a/Plugins/Mineplex.Core/src/mineplex/core/account/repository/AccountRepository.java b/Plugins/Mineplex.Core/src/mineplex/core/account/repository/AccountRepository.java index 96bf49b7a..ae3ce09c2 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/account/repository/AccountRepository.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/account/repository/AccountRepository.java @@ -76,7 +76,7 @@ public class AccountRepository extends RepositoryBase @Override protected void initialize() { - executeUpdate(CREATE_ACCOUNT_TABLE); + //executeUpdate(CREATE_ACCOUNT_TABLE); } public void login(NautHashMap loginProcessors, String uuid, String name) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/elo/EloRepository.java b/Plugins/Mineplex.Core/src/mineplex/core/elo/EloRepository.java index 4ccd6783e..ba8f1428a 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/elo/EloRepository.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/elo/EloRepository.java @@ -23,7 +23,7 @@ public class EloRepository extends RepositoryBase public void initialize() { - executeUpdate(CREATE_ELO_TABLE); + //executeUpdate(CREATE_ELO_TABLE); } public void saveElo(String uuid, String gameType, int elo) diff --git a/Plugins/Mineplex.Core/src/mineplex/core/friend/data/FriendRepository.java b/Plugins/Mineplex.Core/src/mineplex/core/friend/data/FriendRepository.java index 65e269d0a..9b23e121c 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/friend/data/FriendRepository.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/friend/data/FriendRepository.java @@ -28,7 +28,7 @@ public class FriendRepository extends RepositoryBase @Override protected void initialize() { - executeUpdate(CREATE_FRIEND_TABLE); + //executeUpdate(CREATE_FRIEND_TABLE); } @Override diff --git a/Plugins/Mineplex.Core/src/mineplex/core/preferences/PreferencesRepository.java b/Plugins/Mineplex.Core/src/mineplex/core/preferences/PreferencesRepository.java index 21689dc1b..332f9b2db 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/preferences/PreferencesRepository.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/preferences/PreferencesRepository.java @@ -25,7 +25,7 @@ public class PreferencesRepository extends RepositoryBase @Override protected void initialize() { - executeUpdate(CREATE_ACCOUNT_TABLE); + //executeUpdate(CREATE_ACCOUNT_TABLE); } @Override diff --git a/Plugins/Mineplex.Core/src/mineplex/core/simpleStats/SimpleStatsRepository.java b/Plugins/Mineplex.Core/src/mineplex/core/simpleStats/SimpleStatsRepository.java index a5001c3fd..ff39bce61 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/simpleStats/SimpleStatsRepository.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/simpleStats/SimpleStatsRepository.java @@ -25,6 +25,7 @@ public class SimpleStatsRepository public void initialize() { + /* PreparedStatement preparedStatement = null; try @@ -55,6 +56,7 @@ public class SimpleStatsRepository } } } + */ } public NautHashMap retrieveStatRecords() diff --git a/Plugins/Mineplex.Core/src/mineplex/core/spawn/SpawnRepository.java b/Plugins/Mineplex.Core/src/mineplex/core/spawn/SpawnRepository.java index d8177a4b3..69a5e3b64 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/spawn/SpawnRepository.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/spawn/SpawnRepository.java @@ -30,7 +30,7 @@ public class SpawnRepository extends RepositoryBase @Override protected void initialize() { - executeUpdate(CREATE_SPAWN_TABLE); + //executeUpdate(CREATE_SPAWN_TABLE); } @Override diff --git a/Plugins/Mineplex.Core/src/mineplex/core/stats/StatsRepository.java b/Plugins/Mineplex.Core/src/mineplex/core/stats/StatsRepository.java index 8429c4f3b..6a34567c8 100644 --- a/Plugins/Mineplex.Core/src/mineplex/core/stats/StatsRepository.java +++ b/Plugins/Mineplex.Core/src/mineplex/core/stats/StatsRepository.java @@ -37,8 +37,8 @@ public class StatsRepository extends RepositoryBase @Override protected void initialize() { - executeUpdate(CREATE_STAT_TABLE); - executeUpdate(CREATE_STAT_RELATION_TABLE); + //executeUpdate(CREATE_STAT_TABLE); + //executeUpdate(CREATE_STAT_RELATION_TABLE); } @Override diff --git a/Plugins/Mineplex.Hub/src/mineplex/hub/HubManager.java b/Plugins/Mineplex.Hub/src/mineplex/hub/HubManager.java index 51ac080b3..c73502558 100644 --- a/Plugins/Mineplex.Hub/src/mineplex/hub/HubManager.java +++ b/Plugins/Mineplex.Hub/src/mineplex/hub/HubManager.java @@ -179,7 +179,7 @@ public class HubManager extends MiniClientPlugin _mountManager = new MountManager(_plugin, clientManager, donationManager, blockRestore, _disguiseManager); _inventoryManager = new InventoryManager(plugin, clientManager); - new BenefitManager(plugin, clientManager, _inventoryManager); + //new BenefitManager(plugin, clientManager, _inventoryManager); _gadgetManager = new GadgetManager(_plugin, clientManager, donationManager, _inventoryManager, _mountManager, petManager, preferences, disguiseManager, blockRestore, new ProjectileManager(plugin)); _treasureManager = new TreasureManager(_plugin, donationManager, _inventoryManager, petManager, _blockRestore, hologramManager); new CosmeticManager(_plugin, clientManager, donationManager, _inventoryManager, _gadgetManager, _mountManager, petManager, _treasureManager);