File tree Expand file tree Collapse file tree
model/defaultimplementation Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,19 +8,19 @@ public final class Constants {
88 /**
99 * set to true to print out debug information
1010 */
11- public final static boolean DEBUG = false ;
11+ public final static boolean DEBUG = true ;
1212 /**
1313 * Set to true to print board, even if DEBUG is false
1414 */
1515 public final static boolean PRINT_BOARD = false ;
1616 /**
1717 * Change duplicate percentage to 100% and make Creature spawn automatically and rapidly
1818 */
19- public final static boolean RAPID_SPAWN = true ;
19+ public final static boolean RAPID_SPAWN = false ;
2020 /**
2121 * starts game with large amount of money/popularity
2222 */
23- public final static boolean CHEAT_MODE = true ;
23+ public final static boolean CHEAT_MODE = false ;
2424 /**
2525 * The amount of money/popularity to start the game with when in cheat mode
2626 */
Original file line number Diff line number Diff line change 1515
1616import javax .swing .SwingUtilities ;
1717
18- import attributes .AttributeName ;
1918import effects .EventManager ;
2019import effects .Eventful ;
2120import effects .GlobalModifierOption ;
3029import modifiers .Modifier ;
3130import modifiers .ModifierManager ;
3231import thingFramework .Creature ;
33- import thingFramework .CreatureType ;
3432import thingFramework .Item ;
3533import thingFramework .Thing ;
3634/**
@@ -197,10 +195,8 @@ private void addToFoundCreatures(final String name) {
197195 if (foundCreatures .size () >= MAX_CREATURES_IN_QUEUE )
198196 return ;
199197 final Creature creature = ThingFactory .getInstance ().generateNewCreature (name );
200- if (creature .containsAttribute (AttributeName .TYPE ) && creature .getAttributeValue (AttributeName .TYPE ).containsValue (CreatureType .BUG )) {
201- foundCreatures .addLast (creature );
202- addToUniqueCreaturesLookup (creature );
203- }
198+ foundCreatures .addLast (creature );
199+ addToUniqueCreaturesLookup (creature );
204200
205201 }
206202 /**
You can’t perform that action at this time.
0 commit comments