chore: added tickrate logging

This commit is contained in:
2023-03-23 18:07:48 +04:00
parent 8c5e063ef0
commit 7b581b9afe
+2
View File
@@ -66,6 +66,8 @@ public class RagonServer : INetworkListener
_handlers[(byte) RagonOperation.DESTROY_ENTITY] = new EntityDestroyOperation();
_handlers[(byte) RagonOperation.REPLICATE_ENTITY_EVENT] = new EntityEventOperation();
_handlers[(byte) RagonOperation.REPLICATE_ENTITY_STATE] = new EntityStateOperation();
_logger.Trace($"Server Tick Rate: {_configuration.ServerTickRate}");
}
public void Execute()