diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2024-12-30 14:26:02 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-12-30 20:00:32 +0100 |
commit | 8a3d7b0c13439a426c1ae58cffeee029c7e9b888 (patch) | |
tree | 71cf430b7956362679626a2b5b0834dbf1e8ce31 /src/main/kotlin/moe/nea/ledger/Ledger.kt | |
parent | a913eeffce5055fa330e358d197eaad8f915e505 (diff) | |
download | LocalTransactionLedger-8a3d7b0c13439a426c1ae58cffeee029c7e9b888.tar.gz LocalTransactionLedger-8a3d7b0c13439a426c1ae58cffeee029c7e9b888.tar.bz2 LocalTransactionLedger-8a3d7b0c13439a426c1ae58cffeee029c7e9b888.zip |
feat: God Pot and God Pot Mixin Detection
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/Ledger.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/ledger/Ledger.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/Ledger.kt b/src/main/kotlin/moe/nea/ledger/Ledger.kt index d2d09eb..5682797 100644 --- a/src/main/kotlin/moe/nea/ledger/Ledger.kt +++ b/src/main/kotlin/moe/nea/ledger/Ledger.kt @@ -24,6 +24,8 @@ import moe.nea.ledger.modules.ExternalDataProvider import moe.nea.ledger.modules.EyedropsDetection import moe.nea.ledger.modules.ForgeDetection import moe.nea.ledger.modules.GambleDetection +import moe.nea.ledger.modules.GodPotionDetection +import moe.nea.ledger.modules.GodPotionMixinDetection import moe.nea.ledger.modules.KatDetection import moe.nea.ledger.modules.KuudraChestDetection import moe.nea.ledger.modules.MineshaftCorpseDetection @@ -131,6 +133,8 @@ class Ledger { EyedropsDetection::class.java, ForgeDetection::class.java, GambleDetection::class.java, + GodPotionDetection::class.java, + GodPotionMixinDetection::class.java, ItemIdProvider::class.java, KatDetection::class.java, KuudraChestDetection::class.java, |