diff --git a/code/_onclick/hud/plane_master.dm b/code/_onclick/hud/plane_master.dm index cd719507cd2..2d650fb2e72 100644 --- a/code/_onclick/hud/plane_master.dm +++ b/code/_onclick/hud/plane_master.dm @@ -74,3 +74,15 @@ /obj/screen/plane_master/emissive/Initialize() . = ..() add_filter("em_block_masking", 1, color_matrix_filter(GLOB.em_mask_matrix)) + +/obj/screen/plane_master/space + name = "space plane master" + plane = PLANE_SPACE + appearance_flags = PLANE_MASTER + blend_mode = BLEND_OVERLAY + +/obj/screen/plane_master/parallax + name = "parallax plane master" + plane = PLANE_SPACE_PARALLAX + appearance_flags = PLANE_MASTER + blend_mode = BLEND_OVERLAY diff --git a/code/_onclick/hud/plane_master_controller.dm b/code/_onclick/hud/plane_master_controller.dm index b525dfc0ef3..aa67ed35172 100644 --- a/code/_onclick/hud/plane_master_controller.dm +++ b/code/_onclick/hud/plane_master_controller.dm @@ -74,4 +74,4 @@ /atom/movable/plane_master_controller/game name = PLANE_MASTERS_GAME - controlled_planes = list(FLOOR_PLANE, GAME_PLANE, LIGHTING_PLANE) + controlled_planes = list(FLOOR_PLANE, GAME_PLANE, LIGHTING_PLANE, PLANE_SPACE_PARALLAX, PLANE_SPACE)