mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-23 05:07:51 +01:00
Merge pull request #11370 from VOREStation/Arokha/shipnom
Allows you to eat spaceships
This commit is contained in:
committed by
Chompstation Bot
parent
e333e564dd
commit
185dc898f4
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user