mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-22 12:29:46 +01:00
Fix AI eye falling
This commit is contained in:
@@ -135,6 +135,16 @@
|
||||
update_connection_data(C)
|
||||
return
|
||||
|
||||
var/static/last_time
|
||||
if (!last_time)
|
||||
last_time = world.time
|
||||
else
|
||||
var/delta = world.time - last_time
|
||||
last_time = world.time
|
||||
if (delta < 1)
|
||||
log_debug("CONN DATA: [key_name(C)] might be spamming!")
|
||||
return
|
||||
|
||||
var/list/data_object = json_decode(data)
|
||||
|
||||
if (!data_object || !data_object.len)
|
||||
|
||||
Reference in New Issue
Block a user