/// <summary> /// TIME MACHINE STUFF /// </summary> public void buyFlux() { if (em.money >= Util.timeMachineCost) { em.spend(Util.timeMachineCost); wm.sm.buyFlux(); playKaching(); } else { notEnough(); } }