- Makes it so that log_client_to_db is called before mob/Login()
- Makes it so can_vote() doesn't runtime if the player_age isn't a number
This commit is contained in:
monster860
2017-04-04 18:50:24 -04:00
parent f23cf99031
commit 7d0f5cb400
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -8,7 +8,7 @@
handle_player_polling()
/client/proc/can_vote()
return player_age >= 30
return istext(player_age) || player_age >= 30
/client/proc/handle_player_polling()
establish_db_connection()