diff --git a/src/main/java/com/alttd/playershops/conversation/ConversationManager.java b/src/main/java/com/alttd/playershops/conversation/ConversationManager.java index 166669c..f20f76a 100644 --- a/src/main/java/com/alttd/playershops/conversation/ConversationManager.java +++ b/src/main/java/com/alttd/playershops/conversation/ConversationManager.java @@ -77,10 +77,6 @@ public class ConversationManager implements ConversationAbandonedListener { @Override protected Prompt acceptValidatedInput(ConversationContext context, String input) { ShopType newType = ShopType.fromString(input); - if (playerShop.getType() == newType) { - context.getForWhom().sendRawMessage("Shoptype was already set to " + newType.toString() + " Type cancel to cancel this action."); - return new ChangeTypePrompt(); - } playerShop.setShopType(newType); openGui(); return END_OF_CONVERSATION;