Skip to content
This repository has been archived by the owner on Jul 5, 2018. It is now read-only.

Commit

Permalink
Quick fix for part of #84
Browse files Browse the repository at this point in the history
  • Loading branch information
ensingm2 committed Jul 2, 2018
1 parent 3ebd169 commit 29e1d92
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion idle.js
Original file line number Diff line number Diff line change
Expand Up @@ -1085,8 +1085,10 @@ var INJECT_init = function() {

if (gGame.m_State instanceof CBattleSelectionState)
INJECT_init_battle_selection();
else if (gGame.m_State instanceof CPlanetSelectionState)
else if (gGame.m_State instanceof CPlanetSelectionState) {
INJECT_init_planet_selection();
CheckSwitchBetterPlanet();
}
};

var INJECT_toggle_animations = function(enabled) {
Expand Down

0 comments on commit 29e1d92

Please sign in to comment.