mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-24 18:22:58 +02:00
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:
+4
-4
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user