aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/Ledger.kt
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-10-30 19:02:48 +0100
committerLinnea Gräf <nea@nea.moe>2024-10-30 19:02:48 +0100
commit3115eeef02d541822470f08f298110e37fa7a1e6 (patch)
tree03003b0de745e71226420e005acefc03fe4d4d48 /src/main/kotlin/moe/nea/ledger/Ledger.kt
parent5c7f1f4e9677ed5794604b2835098e64294e5357 (diff)
parent3001af7c4277c96f2818ea2efe3c7836b1f1498f (diff)
downloadLocalTransactionLedger-3115eeef02d541822470f08f298110e37fa7a1e6.tar.gz
LocalTransactionLedger-3115eeef02d541822470f08f298110e37fa7a1e6.tar.bz2
LocalTransactionLedger-3115eeef02d541822470f08f298110e37fa7a1e6.zip
Merge https://github.com/nea89o/LocalTransactionLedger/pull/2
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..23d1265 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)
}