mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
Merge pull request #4826 from VOREStation/pol-sa-hostile
Don't require hostile SAs for special purposes
This commit is contained in:
@@ -9,7 +9,6 @@
|
||||
icon_dead = "cat2_dead"
|
||||
icon_rest = "cat2_rest"
|
||||
|
||||
hostile = 1 //To mice, anyway.
|
||||
investigates = 1
|
||||
specific_targets = 1 //Only targets with Found()
|
||||
run_at_them = 0 //DOMESTICATED
|
||||
|
||||
@@ -459,7 +459,7 @@
|
||||
stop_automated_movement = 0
|
||||
|
||||
//Search for targets while idle
|
||||
if(hostile)
|
||||
if(hostile || specific_targets)
|
||||
FindTarget()
|
||||
if(STANCE_FOLLOW)
|
||||
annoyed = 15
|
||||
@@ -467,7 +467,7 @@
|
||||
if(follow_until_time && world.time > follow_until_time)
|
||||
LoseFollow()
|
||||
return
|
||||
if(hostile)
|
||||
if(hostile || specific_targets)
|
||||
FindTarget()
|
||||
if(STANCE_ATTACK)
|
||||
annoyed = 50
|
||||
|
||||
Reference in New Issue
Block a user