Skip to content

Commit

Permalink
Merge pull request #240 from Arokha/subtlefix
Browse files Browse the repository at this point in the history
Add typecheck to subtle proc
  • Loading branch information
Very-Soft authored Apr 24, 2024
2 parents 963d687 + cbd9012 commit 5ea810e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/say_vr.dm
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@
var/mob/living/itsme = src
if(itsme.vore_organs.len)
for(var/obj/belly/ourbelly in itsme.vore_organs)
for(var/anything in ourbelly.contents)
vis_objs |= anything
for(var/obj/O in ourbelly.contents)
vis_objs |= O

for(var/obj/O in vis_objs) //Let's see if there is anything that might have mobs in it around!
if(istype(O,/obj/effect/overmap/visitable/ship)) //Let's look for ships!
Expand Down

0 comments on commit 5ea810e

Please sign in to comment.