We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daa22b3 commit c50e1e9Copy full SHA for c50e1e9
bukkit/src/main/kotlin/io/github/rothes/esu/bukkit/module/essentialcommands/Suicide.kt
@@ -58,7 +58,7 @@ object Suicide: BaseCommand<Suicide.Config, Suicide.Lang>() {
58
@EventHandler(priority = EventPriority.LOW, ignoreCancelled = true)
59
fun onDeath(e: RichPlayerDeathEvent) {
60
val player = e.player
61
- suicided.getIfPresent(player) ?: return println("not sui")
+ suicided.getIfPresent(player) ?: return
62
suicided.invalidate(player)
63
e.setChatMessage { user, old ->
64
old?.let { msg ->
0 commit comments