diff options
author | Brady <thatgravyboat@gmail.com> | 2024-06-09 07:27:18 -0230 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-09 11:57:18 +0200 |
commit | 0b7d5ba223657f0a5de33862871a2355e7235c18 (patch) | |
tree | f9bafed7c379d89c23d13af141b0dfa9df1dcc50 /src/main/java/at/hannibal2/skyhanni/events/MessageSendToServerEvent.kt | |
parent | 1c13055266d04715b2292cc6ab107202a346adca (diff) | |
download | skyhanni-0b7d5ba223657f0a5de33862871a2355e7235c18.tar.gz skyhanni-0b7d5ba223657f0a5de33862871a2355e7235c18.tar.bz2 skyhanni-0b7d5ba223657f0a5de33862871a2355e7235c18.zip |
Backend: Dev Modules (#2011)
Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events/MessageSendToServerEvent.kt')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/events/MessageSendToServerEvent.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/MessageSendToServerEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/MessageSendToServerEvent.kt index 49e51a30b..6aa07cb54 100644 --- a/src/main/java/at/hannibal2/skyhanni/events/MessageSendToServerEvent.kt +++ b/src/main/java/at/hannibal2/skyhanni/events/MessageSendToServerEvent.kt @@ -1,11 +1,11 @@ package at.hannibal2.skyhanni.events -import net.minecraftforge.fml.common.ModContainer +import at.hannibal2.skyhanni.utils.system.ModInstance import net.minecraftforge.fml.common.eventhandler.Cancelable @Cancelable class MessageSendToServerEvent( val message: String, val splitMessage: List<String>, - val originatingModContainer: ModContainer? + val originatingModContainer: ModInstance? ) : LorenzEvent() |