You most likely did something along the lines of:
// greater than 20 if money > 20 { // (incorrect way) } // greater than or equal to if money >= 20 { // (correct way) }
Was crazy good for a first game!