mirror of
https://github.com/CitizensDev/Citizens2.git
synced 2024-11-22 02:25:57 +01:00
fix: remove other duplicate entity controller for POTION in other NMS modules (#3154)
This appends to #3153
This commit is contained in:
parent
3a3f2cb9ea
commit
ebe00ae5c6
@ -900,7 +900,6 @@ public class NMSImpl implements NMSBridge {
|
||||
EntityControllers.setEntityControllerForType(EntityType.TRADER_LLAMA, TraderLlamaController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.WANDERING_TRADER, WanderingTraderController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.LLAMA_SPIT, LlamaSpitController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.SPLASH_POTION, ThrownPotionController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MAGMA_CUBE, MagmaCubeController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART, MinecartRideableController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART_CHEST, MinecartChestController.class);
|
||||
|
@ -917,7 +917,6 @@ public class NMSImpl implements NMSBridge {
|
||||
EntityControllers.setEntityControllerForType(EntityType.TRADER_LLAMA, TraderLlamaController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.WANDERING_TRADER, WanderingTraderController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.LLAMA_SPIT, LlamaSpitController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.SPLASH_POTION, ThrownPotionController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MAGMA_CUBE, MagmaCubeController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART, MinecartRideableController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART_CHEST, MinecartChestController.class);
|
||||
|
@ -941,7 +941,6 @@ public class NMSImpl implements NMSBridge {
|
||||
EntityControllers.setEntityControllerForType(EntityType.TRADER_LLAMA, TraderLlamaController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.WANDERING_TRADER, WanderingTraderController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.LLAMA_SPIT, LlamaSpitController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.SPLASH_POTION, ThrownPotionController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MAGMA_CUBE, MagmaCubeController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART, MinecartRideableController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART_CHEST, MinecartChestController.class);
|
||||
|
@ -948,7 +948,6 @@ public class NMSImpl implements NMSBridge {
|
||||
EntityControllers.setEntityControllerForType(EntityType.TRADER_LLAMA, TraderLlamaController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.WANDERING_TRADER, WanderingTraderController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.LLAMA_SPIT, LlamaSpitController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.SPLASH_POTION, ThrownPotionController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MARKER, MarkerController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MAGMA_CUBE, MagmaCubeController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART, MinecartRideableController.class);
|
||||
|
@ -955,7 +955,6 @@ public class NMSImpl implements NMSBridge {
|
||||
EntityControllers.setEntityControllerForType(EntityType.TRADER_LLAMA, TraderLlamaController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.WANDERING_TRADER, WanderingTraderController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.LLAMA_SPIT, LlamaSpitController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.SPLASH_POTION, ThrownPotionController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MARKER, MarkerController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MAGMA_CUBE, MagmaCubeController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART, MinecartRideableController.class);
|
||||
|
@ -1023,7 +1023,6 @@ public class NMSImpl implements NMSBridge {
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART_HOPPER, MinecartHopperController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MINECART_TNT, MinecartTNTController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.MUSHROOM_COW, MushroomCowController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.SPLASH_POTION, ThrownPotionController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.OCELOT, OcelotController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.PANDA, PandaController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.PAINTING, PaintingController.class);
|
||||
|
@ -1068,7 +1068,6 @@ public class NMSImpl implements NMSBridge {
|
||||
EntityControllers.setEntityControllerForType(EntityType.PLAYER, HumanController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.POLAR_BEAR, PolarBearController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.POTION, ThrownPotionController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.POTION, ThrownPotionController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.PUFFERFISH, PufferFishController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.RABBIT, RabbitController.class);
|
||||
EntityControllers.setEntityControllerForType(EntityType.RAVAGER, RavagerController.class);
|
||||
|
Loading…
Reference in New Issue
Block a user