From 2d9844426886cd488703d05ee58558e05d4c3987 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Wed, 8 May 2024 21:13:21 +0200 Subject: Feature: Profit per corpse loot (#1734) Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../java/at/hannibal2/skyhanni/events/mining/CorpseLootedEvent.kt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/main/java/at/hannibal2/skyhanni/events/mining/CorpseLootedEvent.kt (limited to 'src/main/java/at/hannibal2/skyhanni/events') diff --git a/src/main/java/at/hannibal2/skyhanni/events/mining/CorpseLootedEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/mining/CorpseLootedEvent.kt new file mode 100644 index 000000000..e73357296 --- /dev/null +++ b/src/main/java/at/hannibal2/skyhanni/events/mining/CorpseLootedEvent.kt @@ -0,0 +1,6 @@ +package at.hannibal2.skyhanni.events.mining + +import at.hannibal2.skyhanni.events.LorenzEvent +import at.hannibal2.skyhanni.features.mining.mineshaft.CorpeType + +class CorpseLootedEvent(val corpseType: CorpeType, val loot: List>) : LorenzEvent() -- cgit