Skip to content

Commit f2794de

Browse files
Allows normal mobs to haunt the chapel again (#36994)
1 parent 23bce0f commit f2794de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/modules/mob/mob_movement.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@
500500
if(observer.invisibility == 0 || observer.mind && (find_active_faction_by_member(observer.mind.GetRole(LEGACY_CULTIST)) || find_active_faction_by_member(iscultist(observer))))
501501
to_chat(mob, "<span class='warning'>You cannot get past holy grounds while you are in this plane of existence!</span>")
502502
blocked = TRUE
503-
else if(!blocked && !Move_object(direct) && !Dir_object(direct))
503+
if(!blocked && !Move_object(direct) && !Dir_object(direct))
504504
mob.forceEnter(get_step(mob, direct))
505505
mob.dir = direct
506506
if(istype(T, /turf/simulated/open)) // Stair movement down

0 commit comments

Comments
 (0)