Fixed secondary issues in #648
This commit is contained in:
@@ -33,7 +33,6 @@ export let CacheWrinklersTotal = 0;
|
||||
export let CacheWrinklersNormal = 0;
|
||||
export let CacheWrinklersFattest = [0, null];
|
||||
|
||||
export let CacheAvgCps = 0;
|
||||
export let CacheCurrWrinklerCPSMult = 0;
|
||||
export let CacheCurrWrinklerCount = 0;
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import {
|
||||
CacheAvgCps, CacheCurrWrinklerCount, CacheCurrWrinklerCPSMult, CacheWrinklersFattest,
|
||||
CacheAverageCPS, CacheCurrWrinklerCount, CacheCurrWrinklerCPSMult, CacheWrinklersFattest,
|
||||
} from '../../Cache/VariablesAndData';
|
||||
import { CMOptions } from '../../Config/VariablesAndData';
|
||||
|
||||
@@ -9,7 +9,7 @@ import { CMOptions } from '../../Config/VariablesAndData';
|
||||
*/
|
||||
export default function GetCPS() {
|
||||
if (CMOptions.CPSMode) {
|
||||
return CacheAvgCps;
|
||||
return CacheAverageCPS;
|
||||
} if (CMOptions.CalcWrink === 0) {
|
||||
return (Game.cookiesPs * (1 - Game.cpsSucked));
|
||||
} if (CMOptions.CalcWrink === 1) {
|
||||
|
||||
Reference in New Issue
Block a user