Skip to content

Commit c50e1e9

Browse files
committed
Remove debug message
1 parent daa22b3 commit c50e1e9

File tree

1 file changed

+1
-1
lines changed
  • bukkit/src/main/kotlin/io/github/rothes/esu/bukkit/module/essentialcommands

1 file changed

+1
-1
lines changed

bukkit/src/main/kotlin/io/github/rothes/esu/bukkit/module/essentialcommands/Suicide.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ object Suicide: BaseCommand<Suicide.Config, Suicide.Lang>() {
5858
@EventHandler(priority = EventPriority.LOW, ignoreCancelled = true)
5959
fun onDeath(e: RichPlayerDeathEvent) {
6060
val player = e.player
61-
suicided.getIfPresent(player) ?: return println("not sui")
61+
suicided.getIfPresent(player) ?: return
6262
suicided.invalidate(player)
6363
e.setChatMessage { user, old ->
6464
old?.let { msg ->

0 commit comments

Comments
 (0)