From 6c793e838599fa30494893eccab52f9e86c69d4f Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Wed, 30 Oct 2024 11:54:33 +0100 Subject: refactor: Remove comment from NpcDetection as its already present in Ledger file --- src/main/kotlin/moe/nea/ledger/NpcDetection.kt | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') diff --git a/src/main/kotlin/moe/nea/ledger/NpcDetection.kt b/src/main/kotlin/moe/nea/ledger/NpcDetection.kt index 8f20bc4..656f1d6 100644 --- a/src/main/kotlin/moe/nea/ledger/NpcDetection.kt +++ b/src/main/kotlin/moe/nea/ledger/NpcDetection.kt @@ -10,10 +10,6 @@ class NpcDetection(val ledger: LedgerLogger, val ids: ItemIdProvider) { val npcSellPattern = Pattern.compile("You sold (?.*) x(?$SHORT_NUMBER_PATTERN) for (?$SHORT_NUMBER_PATTERN) Coins!") - // You bought Cactus x32 for 465.6 Coins! - // You sold Cactus x1 for 3 Coins! - - @SubscribeEvent fun onNpcBuy(event: ChatReceived) { npcBuyPattern.useMatcher(event.message) { -- cgit