Merge pull request #11370 from VOREStation/Arokha/shipnom

Allows you to eat spaceships
This commit is contained in:
Aronai Sieyes
2021-08-09 03:28:52 +00:00
committed by Chompstation Bot
parent e333e564dd
commit 185dc898f4
2 changed files with 40 additions and 3 deletions
+9 -3
View File
@@ -122,9 +122,15 @@ SUBSYSTEM_DEF(skybox)
if(istype(O))
var/image/self_image = O.generate_skybox(z)
new_overlays += self_image
for(var/obj/effect/overmap/visitable/other in O.loc)
if(other != O)
new_overlays += other.get_skybox_representation(z)
//VOREStation Add
if(isbelly(O.loc)) // Teehee
base.icon = 'icons/skybox/skybox_vr.dmi'
base.icon_state = "flesh"
//VOREStation Add End
else
for(var/obj/effect/overmap/visitable/other in O.loc)
if(other != O)
new_overlays += other.get_skybox_representation(z)
// Allow events to apply custom overlays to skybox! (Awesome!)
for(var/datum/event/E in SSevents.active_events)