diff options
author | Linnea Gräf <nea@nea.moe> | 2024-12-19 20:38:45 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-12-19 20:38:45 +0100 |
commit | 98857e6f70731b9e1d6bd19a51f992c9ca283f4c (patch) | |
tree | 8b74027edc4aba25d5e8b420b4f114d5629cabc8 /src/main/kotlin/moe/nea/ledger/Ledger.kt | |
parent | eda44cb8743c709c15a7ed03381d05e43728e647 (diff) | |
download | LocalTransactionLedger-98857e6f70731b9e1d6bd19a51f992c9ca283f4c.tar.gz LocalTransactionLedger-98857e6f70731b9e1d6bd19a51f992c9ca283f4c.tar.bz2 LocalTransactionLedger-98857e6f70731b9e1d6bd19a51f992c9ca283f4c.zip |
feat: Archfiend gambling detection
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/Ledger.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/ledger/Ledger.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/Ledger.kt b/src/main/kotlin/moe/nea/ledger/Ledger.kt index 2d41a73..e5af95c 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.GambleDetection import moe.nea.ledger.modules.KatDetection import moe.nea.ledger.modules.KuudraChestDetection import moe.nea.ledger.modules.MineshaftCorpseDetection @@ -118,6 +119,7 @@ class Ledger { MinionDetection::class.java, MineshaftCorpseDetection::class.java, NpcDetection::class.java, + GambleDetection::class.java, QueryCommand::class.java, RequestUtil::class.java, VisitorDetection::class.java, |