mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-12 23:23:20 +00:00
Create quick fix
This commit is contained in:
parent
e265ded2b8
commit
eedb0bfc42
@ -22,7 +22,7 @@ const MachineHandler = {
|
||||
// Increase base RM gain if <10 RM
|
||||
if (rmGain.gte(1) && rmGain.lt(10)) rmGain = new Decimal(27 / 4000 * log10FinalEP - 26);
|
||||
rmGain = rmGain.times(this.realityMachineMultiplier);
|
||||
return rmGain;
|
||||
return rmGain.floor();
|
||||
},
|
||||
|
||||
get gainedRealityMachines() {
|
||||
|
@ -1002,6 +1002,9 @@ GameStorage.devMigrations = {
|
||||
},
|
||||
GameStorage.migrations.deleteDimboostBulk,
|
||||
GameStorage.migrations.removePriority,
|
||||
player => {
|
||||
player.reality.realityMachines = player.reality.realityMachines.floor();
|
||||
}
|
||||
],
|
||||
|
||||
patch(player) {
|
||||
|
Loading…
Reference in New Issue
Block a user