Fixed server IO errors / Fixed kick IP tracing

This commit is contained in:
Anuken
2021-07-10 22:18:58 -04:00
parent 158d11d3ba
commit 8a84ebb58d
5 changed files with 51 additions and 24 deletions

View File

@@ -238,6 +238,10 @@ abstract class PlayerComp implements UnitController, Entityc, Syncc, Timerc, Dra
con.kick(reason);
}
void kick(KickReason reason, long duration){
con.kick(reason, duration);
}
void kick(String reason){
con.kick(reason);
}