diff options
author | Linnea Gräf <nea@nea.moe> | 2024-12-19 21:26:48 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-12-19 21:26:48 +0100 |
commit | 7c4b2e089fa23622799bc06a08f6932197365368 (patch) | |
tree | 68dd5901fdb587639bda530f3674fb9606fa971a /src/main/kotlin/moe/nea/ledger/Ledger.kt | |
parent | 7e007e7a9adf550e70b809ce8239dd9b5a15d45c (diff) | |
download | LocalTransactionLedger-7c4b2e089fa23622799bc06a08f6932197365368.tar.gz LocalTransactionLedger-7c4b2e089fa23622799bc06a08f6932197365368.tar.bz2 LocalTransactionLedger-7c4b2e089fa23622799bc06a08f6932197365368.zip |
feat: Forge detection
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/Ledger.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/ledger/Ledger.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/Ledger.kt b/src/main/kotlin/moe/nea/ledger/Ledger.kt index 2f828b0..bb69621 100644 --- a/src/main/kotlin/moe/nea/ledger/Ledger.kt +++ b/src/main/kotlin/moe/nea/ledger/Ledger.kt @@ -16,6 +16,7 @@ import moe.nea.ledger.modules.BitsDetection import moe.nea.ledger.modules.BitsShopDetection import moe.nea.ledger.modules.DungeonChestDetection import moe.nea.ledger.modules.ExternalDataProvider +import moe.nea.ledger.modules.ForgeDetection import moe.nea.ledger.modules.GambleDetection import moe.nea.ledger.modules.KatDetection import moe.nea.ledger.modules.KuudraChestDetection @@ -87,6 +88,7 @@ class Ledger { fun runLater(runnable: Runnable) { tickQueue.add(runnable) } + val di = DI() } @@ -118,6 +120,7 @@ class Ledger { LogChatCommand::class.java, MinionDetection::class.java, MineshaftCorpseDetection::class.java, + ForgeDetection::class.java, NpcDetection::class.java, GambleDetection::class.java, QueryCommand::class.java, |