dis446 / Shelter-Survival-Text-Based

An open source, text based version of the popular Bethesda Fallout Shelter game.
9 stars 7 forks source link

Turning integer flags into booleans #23

Closed kungtotte closed 8 years ago

kungtotte commented 8 years ago

All over the code there are tons of flags that are set to 1 or 0 to act as flags. For clarity these should all be converted to booleans (use true/false instead of 1/0).

dis446 commented 8 years ago

That makes sense