Duration string output.

This commit is contained in:
2023-03-16 12:53:16 -04:00
parent b6b9d7635f
commit 76af946b5f
+4 -4
View File
@@ -26,11 +26,11 @@ public class HeartbeatCmd extends AbstractDevCmd {
protected void _doCmd(PlayerCharacter pc, String[] words,
AbstractGameObject target) {
this.throwbackInfo(pc, "Heartbeat : " + SimulationManager.executionTime.toMillis() + "ms");
this.throwbackInfo(pc, "Heartbeat Max: " + SimulationManager.executionMax.toMillis() + "ms");
this.throwbackInfo(pc, "Heartbeat : " + SimulationManager.executionTime);
this.throwbackInfo(pc, "Heartbeat Max: " + SimulationManager.executionMax);
this.throwbackInfo(pc, "FSM: " + MobileFSMManager.executionTime.toMillis() + "ms");
this.throwbackInfo(pc, "FSM max: " + MobileFSMManager.executionMax.toMillis() + "ms");
this.throwbackInfo(pc, "FSM: " + MobileFSMManager.executionTime);
this.throwbackInfo(pc, "FSM max: " + MobileFSMManager.executionMax);
}