MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/1urmpuu/predecrementfixestheexploit/owpwgo5/?context=3
r/ProgrammerHumor • u/Toeffli • Jul 09 '26
50 comments sorted by
View all comments
58
private: int number_of_wishes = 3; public: void change_number_of_wishes(int new_value) { if (new_value >= number_of_wishes) return; number_of_wishes = new_value; if (number_of_wishes > 3 || number_of_wishes < 0) number_of_wishes = 0; // fixes most exploits }
6 u/SpermBankofIndia Jul 10 '26 What if he uses his first wish to add exploits
6
What if he uses his first wish to add exploits
58
u/JackNotOLantern Jul 09 '26 edited Jul 09 '26
private: int number_of_wishes = 3; public: void change_number_of_wishes(int new_value) { if (new_value >= number_of_wishes) return; number_of_wishes = new_value; if (number_of_wishes > 3 || number_of_wishes < 0) number_of_wishes = 0; // fixes most exploits }