VS: Fix various screams and emotes in bellies

This commit is contained in:
Arokha Sieyes
2018-03-18 20:20:26 -04:00
parent 9d1b1b3f93
commit 8b647cce73
6 changed files with 27 additions and 13 deletions

View File

@@ -442,14 +442,8 @@
//VOREStation Edit
var/list/see
if(isbelly(loc))
var/list/belly_mobs = list()
see["mobs"] = belly_mobs
var/list/belly_objs = list()
see["objs"] = belly_objs
for(var/mob/living/L in loc.contents)
belly_mobs |= L
for(var/obj/O in loc.contents)
belly_objs |= O
var/obj/belly/B = loc
see = B.get_mobs_and_objs_in_belly()
else
see = get_mobs_and_objs_in_view_fast(get_turf(src),world.view,remote_ghosts = FALSE)
//VOREStation Edit End