ProodjePindakaas / Quantum-Werewolf

The python script for running a game of Quantum Werewolf
MIT License
2 stars 0 forks source link

Fix crash on exponent input #25

Closed ProodjePindakaas closed 6 months ago

ProodjePindakaas commented 6 months ago

the check if the input for a player is a integer was incorrectly returning True for exponents like '²' but subsequently crashed when trying to convert this to an integer. Instead of using str.isdigit() we now use str.isdecimal() which gives correct behavior.