Merge pull request #8192 from deathride58/byondexplanation

Intensifies sanity checks in the client part of /mob/Login() in an attempt to fix the spontaneous lobby forcing bug
This commit is contained in:
kevinz000
2019-04-02 05:39:05 -07:00
committed by GitHub
+7 -6
View File
@@ -43,12 +43,13 @@
if(client)
client.change_view(CONFIG_GET(string/default_view)) // Resets the client.view in case it was changed.
if(client.player_details.player_actions.len)
for(var/datum/action/A in client.player_details.player_actions)
A.Grant(src)
if(client.player_details && istype(client.player_details))
if(client.player_details.player_actions.len)
for(var/datum/action/A in client.player_details.player_actions)
A.Grant(src)
for(var/foo in client.player_details.post_login_callbacks)
var/datum/callback/CB = foo
CB.Invoke()
for(var/foo in client.player_details.post_login_callbacks)
var/datum/callback/CB = foo
CB.Invoke()
log_message("Client [key_name(src)] has taken ownership of mob [src]([src.type])", LOG_OWNERSHIP)