From d1e16a47819509ed645bb93e1a173e0a97025cef Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 8 Jan 2025 19:25:29 +0100 Subject: build: Move mod to subproject --- .../moe/nea/ledger/modules/GodPotionDetection.kt | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/main/kotlin/moe/nea/ledger/modules/GodPotionDetection.kt (limited to 'src/main/kotlin/moe/nea/ledger/modules/GodPotionDetection.kt') diff --git a/src/main/kotlin/moe/nea/ledger/modules/GodPotionDetection.kt b/src/main/kotlin/moe/nea/ledger/modules/GodPotionDetection.kt deleted file mode 100644 index ae86519..0000000 --- a/src/main/kotlin/moe/nea/ledger/modules/GodPotionDetection.kt +++ /dev/null @@ -1,35 +0,0 @@ -package moe.nea.ledger.modules - -import moe.nea.ledger.ItemChange -import moe.nea.ledger.ItemId -import moe.nea.ledger.LedgerEntry -import moe.nea.ledger.LedgerLogger -import moe.nea.ledger.TransactionType -import moe.nea.ledger.events.ChatReceived -import moe.nea.ledger.gen.ItemIds -import moe.nea.ledger.useMatcher -import moe.nea.ledger.utils.di.Inject -import net.minecraftforge.fml.common.eventhandler.SubscribeEvent - -class GodPotionDetection { - - val godPotionDrank = "(SIP|SLURP|GULP|CHUGALUG)! The God Potion grants you powers for .*!".toPattern() - - @Inject - lateinit var logger: LedgerLogger - - @SubscribeEvent - fun onChat(event: ChatReceived) { - godPotionDrank.useMatcher(event.message) { - logger.logEntry( - LedgerEntry( - TransactionType.GOD_POTION_DRANK, - event.timestamp, - listOf( - ItemChange.lose(ItemIds.GOD_POTION_2, 1) - ) - ) - ) - } - } -} \ No newline at end of file -- cgit