diff --git a/code/modules/antagonists/eldritch_cult/eldritch_effects.dm b/code/modules/antagonists/eldritch_cult/eldritch_effects.dm index 89f3cc2e2805..90c4491c8b93 100644 --- a/code/modules/antagonists/eldritch_cult/eldritch_effects.dm +++ b/code/modules/antagonists/eldritch_cult/eldritch_effects.dm @@ -152,7 +152,7 @@ var/obj/effect/reality_smash/current_fracture = locate() in range(1, chosen_location) var/obj/effect/broken_illusion/current_burnt_fracture = locate() in range(1, chosen_location) var/obj/structure/window/windowsxp = locate() in range(1, chosen_location) - if(current_fracture || current_burnt_fracture || windowsxp.fulltile) //we dont want to spawn + if(current_fracture || current_burnt_fracture || windowsxp?.fulltile) //we dont want to spawn continue new /obj/effect/reality_smash(chosen_location) ReworkNetwork()