Merge pull request #10471 from VOREStation/Arokha/unsn

Fix sign in combat unseen
This commit is contained in:
Aronai Sieyes
2021-05-28 12:16:16 -04:00
committed by Chompstation Bot
parent b4d4149006
commit 658f9a10a3

View File

@@ -4,7 +4,7 @@
/datum/ai_holder/proc/engage_unseen_enemy()
ai_log("engage_unseen_enemy() : Entering.", AI_LOG_TRACE)
// Also handled in strategic updates but handling it here allows for more fine resolution timeouts
if((lose_target_time+lose_target_timeout) >= world.time)
if((lose_target_time+lose_target_timeout) <= world.time)
return remove_target()
// Lets do some last things before giving up.
if(conserve_ammo || !holder.ICheckRangedAttack(target_last_seen_turf))