More tweaks to Karst / Default player limit of 30

This commit is contained in:
Anuken
2022-10-24 10:59:10 -04:00
parent 1796f25482
commit 8c78f37566
5 changed files with 33 additions and 2 deletions

View File

@@ -28,6 +28,8 @@ public abstract class NetConnection{
public long lastReceivedClientTime;
/** Build requests that have been recently rejected. This is cleared every snapshot. */
public Seq<BuildPlan> rejectedRequests = new Seq<>();
/** Handles chat spam rate limits. */
public Ratekeeper chatRate = new Ratekeeper();
public boolean hasConnected, hasBegunConnecting, hasDisconnected;
public float viewWidth, viewHeight, viewX, viewY;