Closed WolfoIsBestWolf closed 11 months ago
RoR2.InfiniteTowerRun.OnPrePopulateSceneServer does a big "credits = 600" after the normal PrePopulate that you hook into so you gotta hook into this one too and do the multiplier/additions again.
On.RoR2.InfiniteTowerRun.OnPrePopulateSceneServer += (orig, self, sceneDirector) => { orig(self, sceneDirector); //Your code here };
oh okay, thanks for pointing that out! i'll update tonight hopefully
should be fixed in 1.5.10!
RoR2.InfiniteTowerRun.OnPrePopulateSceneServer does a big "credits = 600" after the normal PrePopulate that you hook into so you gotta hook into this one too and do the multiplier/additions again.
On.RoR2.InfiniteTowerRun.OnPrePopulateSceneServer += (orig, self, sceneDirector) => { orig(self, sceneDirector); //Your code here };