From 4019c49fffaade8b4be349e2d78606556b5703d9 Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Mon, 1 Mar 2021 15:47:23 +0100 Subject: [PATCH] Log who skipped the wave to the console (#4825) --- core/src/mindustry/core/NetServer.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/mindustry/core/NetServer.java b/core/src/mindustry/core/NetServer.java index daf6582dbc..36d24770dc 100644 --- a/core/src/mindustry/core/NetServer.java +++ b/core/src/mindustry/core/NetServer.java @@ -725,6 +725,7 @@ public class NetServer implements ApplicationListener{ //no verification is done, so admins can hypothetically spam waves //not a real issue, because server owners may want to do just that logic.skipWave(); + info("&lc@ has skipped the wave.", player.name); }else if(action == AdminAction.ban){ netServer.admins.banPlayerIP(other.con.address); netServer.admins.banPlayerID(other.con.uuid);