Merge pull request #11620 from Verkister/patch-84

Makes belly overlays not apply on clientless mobs
This commit is contained in:
Aronai Sieyes
2021-09-27 14:13:12 -04:00
committed by GitHub
+2
View File
@@ -244,6 +244,8 @@
/obj/belly/proc/vore_fx(mob/living/L)
if(!istype(L))
return
if(!L.client)
return
if(!L.show_vore_fx)
L.clear_fullscreen("belly")
return