GANG: Fix Gang UI to correctly report the bonus time multiplier as 25x

Add Tooltop to Corporation UI to explain bonus time (matching the one in
Gang UI)
Move corporation.process to the correct location
This commit is contained in:
TheMas3212
2022-11-25 00:41:24 +11:00
parent e7fc0fbb03
commit 533d8a4332
4 changed files with 23 additions and 10 deletions
+4 -4
View File
@@ -104,7 +104,10 @@ const Engine: {
staneksGift.process(numCycles);
// Corporation
if (Player.corporation) Player.corporation.storeCycles(numCycles);
if (Player.corporation) {
Player.corporation.storeCycles(numCycles);
Player.corporation.process();
}
// Bladeburner
if (Player.bladeburner) Player.bladeburner.storeCycles(numCycles);
@@ -192,9 +195,6 @@ const Engine: {
Engine.Counters.messages = 150;
}
}
if (Player.corporation) {
Player.corporation.process();
}
if (Engine.Counters.mechanicProcess <= 0) {
if (Player.bladeburner) {
try {