aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/Ledger.kt
diff options
context:
space:
mode:
authorjani270 <69345714+jani270@users.noreply.github.com>2024-10-30 11:48:09 +0100
committerjani270 <69345714+jani270@users.noreply.github.com>2024-10-30 11:48:09 +0100
commitdb0b75a351e08c1e82885fcf01e967c59a915b8c (patch)
tree344728b139da41206cb792d8dfe9a9a7500f1e57 /src/main/kotlin/moe/nea/ledger/Ledger.kt
parent5c7f1f4e9677ed5794604b2835098e64294e5357 (diff)
downloadLocalTransactionLedger-db0b75a351e08c1e82885fcf01e967c59a915b8c.tar.gz
LocalTransactionLedger-db0b75a351e08c1e82885fcf01e967c59a915b8c.tar.bz2
LocalTransactionLedger-db0b75a351e08c1e82885fcf01e967c59a915b8c.zip
feat: NPC Detection
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/Ledger.kt')
-rw-r--r--src/main/kotlin/moe/nea/ledger/Ledger.kt8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/Ledger.kt b/src/main/kotlin/moe/nea/ledger/Ledger.kt
index b4fe2c4..31330e2 100644
--- a/src/main/kotlin/moe/nea/ledger/Ledger.kt
+++ b/src/main/kotlin/moe/nea/ledger/Ledger.kt
@@ -46,7 +46,12 @@ class Ledger {
You purchased 2x Walnut for 69 coins!
You purchased ◆ Ice Rune I for 4,000 coins!
- TODO: TRADING, FORGE, COOKIE_EATEN, NPC_SELL, NPC_BUY
+ // NPC
+
+ // You bought Cactus x32 for 465.6 Coins!
+ // You sold Cactus x1 for 3 Coins!
+
+ TODO: TRADING, FORGE, COOKIE_EATEN
*/
companion object {
val dataFolder = File("money-ledger").apply { mkdirs() }
@@ -104,6 +109,7 @@ class Ledger {
BitsDetection(ledger),
BitsShop(ledger),
MinionDetection(ledger),
+ NpcDetection(ledger, ids),
).forEach(MinecraftForge.EVENT_BUS::register)
}