diff options
author | Linnea Gräf <nea@nea.moe> | 2024-12-28 15:52:17 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-12-28 15:52:17 +0100 |
commit | c82d0b07033e02f7a6a23adbc1607ab3d41afdad (patch) | |
tree | bb48f950d7c4ed1ca96e087824ab6653500e0de4 /src/main/kotlin/moe/nea/ledger/Ledger.kt | |
parent | 4d0de990e38632da9ad5c8b2d6ff90d259b2fcc6 (diff) | |
download | LocalTransactionLedger-c82d0b07033e02f7a6a23adbc1607ab3d41afdad.tar.gz LocalTransactionLedger-c82d0b07033e02f7a6a23adbc1607ab3d41afdad.tar.bz2 LocalTransactionLedger-c82d0b07033e02f7a6a23adbc1607ab3d41afdad.zip |
feat: Add draonic sacrifice tracker
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 ee21efb..ed3c6a2 100644 --- a/src/main/kotlin/moe/nea/ledger/Ledger.kt +++ b/src/main/kotlin/moe/nea/ledger/Ledger.kt @@ -18,6 +18,7 @@ import moe.nea.ledger.modules.BazaarOrderDetection import moe.nea.ledger.modules.BitsDetection import moe.nea.ledger.modules.BitsShopDetection import moe.nea.ledger.modules.DragonEyePlacementDetection +import moe.nea.ledger.modules.`DragonSacrificeDetection` import moe.nea.ledger.modules.DungeonChestDetection import moe.nea.ledger.modules.ExternalDataProvider import moe.nea.ledger.modules.ForgeDetection @@ -122,6 +123,7 @@ class Ledger { Database::class.java, DebugDataCommand::class.java, DragonEyePlacementDetection::class.java, + DragonSacrificeDetection::class.java, DungeonChestDetection::class.java, ErrorUtil::class.java, ExternalDataProvider::class.java, |