Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit bd401e8

Browse files
committed
stuff for event
1 parent 8565418 commit bd401e8

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

code/_onclick/hud/parallax.dm

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
C.parallax_layers_cached = list()
1616
C.parallax_layers_cached += new /atom/movable/screen/parallax_layer/layer_1(null, src)
1717
C.parallax_layers_cached += new /atom/movable/screen/parallax_layer/layer_2(null, src)
18-
18+
19+
/*
1920
if(GLOB.minetype == MINETYPE_LAVALAND)
2021
if(HAS_TRAIT(SSstation, STATION_TRAIT_MOONSCORCH))
2122
C.parallax_layers_cached += new /atom/movable/screen/parallax_layer/planet/moonscorch(null, src)
@@ -24,6 +25,11 @@
2425
if(GLOB.minetype == MINETYPE_JUNGLE)
2526
C.parallax_layers_cached += new /atom/movable/screen/parallax_layer/planet/jungle(null, src)
2627
28+
29+
The singularity consumes all
30+
*/
31+
C.parallax_layers_cached += new /atom/movable/screen/parallax_layer/planet/singularity(null, src)
32+
2733
if(SSparallax.random_layer)
2834
C.parallax_layers_cached += new SSparallax.random_layer.type(null, src, FALSE, SSparallax.random_layer)
2935
C.parallax_layers_cached += new /atom/movable/screen/parallax_layer/layer_3(null, src)
@@ -380,3 +386,13 @@ INITIALIZE_IMMEDIATE(/atom/movable/screen/parallax_layer)
380386

381387
/atom/movable/screen/parallax_layer/planet/jungle
382388
icon_state = "jungleland"
389+
390+
/atom/movable/screen/parallax_layer/planet/singularity
391+
icon = 'icons/effects/288x288.dmi'
392+
icon_state = "singularity_s9"
393+
pixel_x = -128
394+
pixel_y = -128
395+
396+
/atom/movable/screen/parallax_layer/planet/singularity/Initialize(mapload, datum/hud/hud_owner)
397+
. = ..()
398+
transform = matrix().Scale(0.5)

config/config.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,4 +465,4 @@ MAX_SHUTTLE_SIZE 300
465465
TOAST_NOTIFICATION_ON_INIT
466466

467467
## Enable/Disable Backrooms z-level generation at startup
468-
BACKROOMS_ENABLED
468+
#BACKROOMS_ENABLED

0 commit comments

Comments
 (0)