We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 467a545 commit aede4bcCopy full SHA for aede4bc
src/main/java/org/cyberpwn/react/ui/ServerTab.java
@@ -442,6 +442,8 @@ public void push(GList<String> actions) {
442
443
public void push(GMap<String, Double> sample, String console) {
444
sample.put("rct", sample.get("rct") / 1000000.0);
445
+ sample.put("mah/s", sample.get("mah/s") / 1024D / 1024D);
446
+ sample.put("mem", sample.get("mem") / 1024 / 1024);
447
lastConsole = StringUtils.repeat("\n", 40) + console;
448
lastLog = StringUtils.repeat("\n", 40) + L.log;
449
0 commit comments