From b15a45f83e8eea80efee9786a09ca70909234fd6 Mon Sep 17 00:00:00 2001 From: Kiran Hart Date: Mon, 12 Feb 2024 15:12:38 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9D=8C=20remove=20unused=20mcmmo=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Took 25 seconds --- .../ca/tweetzy/auctionhouse/helpers/AuctionCreator.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main/java/ca/tweetzy/auctionhouse/helpers/AuctionCreator.java b/src/main/java/ca/tweetzy/auctionhouse/helpers/AuctionCreator.java index 1aa8d51..f99b040 100644 --- a/src/main/java/ca/tweetzy/auctionhouse/helpers/AuctionCreator.java +++ b/src/main/java/ca/tweetzy/auctionhouse/helpers/AuctionCreator.java @@ -70,12 +70,6 @@ public final class AuctionCreator { } // Hooks & Special Cases -// if (McMMOHook.isUsingAbility(seller)) { -// instance.getLocale().getMessage("general.mcmmo_ability_active").sendPrefixedMessage(seller); -// result.accept(auctionItem, CANNOT_LIST_WITH_MCMMO_ABILITY_ACTIVE); -// return; -// } - if (!Settings.ALLOW_SALE_OF_DAMAGED_ITEMS.getBoolean() && AuctionAPI.getInstance().isDamaged(auctionItem.getItem())) { instance.getLocale().getMessage("general.cannot list damaged item").sendPrefixedMessage(seller); result.accept(auctionItem, CANNOT_SELL_DAMAGED_ITEM);