mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-28 11:02:08 +00:00
Slime ignoring skrell(lore request) (#5710)
Lore request - requested by Sleepy Wolf, and approved by Jackboot. This PR makes slime ignore skrell at all. Lore justification will be posted in PR later.
This commit is contained in:
committed by
Erki
parent
4e5ce8a1eb
commit
02430da880
@@ -221,13 +221,16 @@
|
||||
if(isslime(L) || L.stat == DEAD) // Ignore other slimes and dead mobs
|
||||
continue
|
||||
|
||||
if(isskrell(L)) // we do not attack skrell - lore reason.
|
||||
continue
|
||||
|
||||
if(L in Friends) // No eating friends!
|
||||
continue
|
||||
|
||||
if(issilicon(L) && (rabid || attacked)) // They can't eat silicons, but they can glomp them in defence
|
||||
targets += L // Possible target found!
|
||||
|
||||
if(istype(L, /mob/living/carbon/human)) //Ignore slime(wo)men
|
||||
if(ishuman(L)) //Ignore slime(wo)men
|
||||
var/mob/living/carbon/human/H = L
|
||||
if(H.species.name == "Slime")
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user