Fixes players getting no age on first connection

This was allowing them to choose any job on servers that use the job age system.
This also adds an admin message on a players first connection. (requested)
This commit is contained in:
MrStonedOne
2015-02-23 20:31:16 -08:00
parent 17d9ec3718
commit 35f3abfb37
+4 -1
View File
@@ -176,7 +176,10 @@ var/next_external_rsc = 0
while (query.NextRow())
player_age = text2num(query.item[2])
break
return
//player not found.
player_age = 0
message_admins("[key_name_admin(src)] is connecting here for the first time.")
/client/proc/sync_client_with_db()