mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 03:33:21 +00:00
say() safety check on client
Spawn keeps it from destroying all say(), thankfully, but needs to be fixed.
This commit is contained in:
@@ -359,7 +359,8 @@ proc/get_radio_key_from_channel(var/channel)
|
|||||||
var/list/clients_from_image = images_to_clients[I]
|
var/list/clients_from_image = images_to_clients[I]
|
||||||
for(var/client in clients_from_image)
|
for(var/client in clients_from_image)
|
||||||
var/client/C = client
|
var/client/C = client
|
||||||
C.images -= I
|
if(C) //Could have disconnected after message sent, before removing bubble.
|
||||||
|
C.images -= I
|
||||||
qdel(I)
|
qdel(I)
|
||||||
|
|
||||||
//Log the message to file
|
//Log the message to file
|
||||||
|
|||||||
Reference in New Issue
Block a user