Fix ADPI Spam Pinging Mindshields (#22724)

This one was in the original code.
This commit is contained in:
VMSolidus
2026-06-18 14:10:54 +00:00
committed by GitHub
parent a254052dac
commit 72e024432c
2 changed files with 7 additions and 3 deletions
@@ -263,6 +263,9 @@ SUBSYSTEM_DEF(hallucinations)
adpi_next_message -= target
return
if(world.time < adpi_next_message[target])
return
if(is_adpi_blocked(target))
// ping their blocker an schedule another ping later.
schedule_next_adpi_message(target)
@@ -272,9 +275,6 @@ SUBSYSTEM_DEF(hallucinations)
schedule_next_adpi_message(target, TRUE)
return
if(world.time < adpi_next_message[target])
return
if(send_adpi_message(target))
schedule_next_adpi_message(target)
else