mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-11 10:02:24 +00:00
mapping: Fix last varedited request consoles and forbid their use. (#26541)
This commit is contained in:
committed by
GitHub
parent
3c7c9cacf0
commit
a74f9574bc
@@ -50610,9 +50610,6 @@
|
||||
name = "west bump";
|
||||
pixel_x = -28
|
||||
},
|
||||
/obj/machinery/requests_console/directional/south{
|
||||
pixel_x = 30
|
||||
},
|
||||
/turf/simulated/floor/bluegrid,
|
||||
/area/station/turret_protected/ai)
|
||||
"drV" = (
|
||||
@@ -90054,6 +90051,10 @@
|
||||
/obj/effect/decal/cleanable/dirt,
|
||||
/turf/simulated/floor/plating,
|
||||
/area/station/maintenance/apmaint)
|
||||
"wBd" = (
|
||||
/obj/machinery/requests_console/directional/north,
|
||||
/turf/simulated/floor/bluegrid,
|
||||
/area/station/turret_protected/ai)
|
||||
"wBy" = (
|
||||
/obj/machinery/light{
|
||||
dir = 4
|
||||
@@ -131337,7 +131338,7 @@ drf
|
||||
drf
|
||||
drf
|
||||
drf
|
||||
dry
|
||||
wBd
|
||||
drO
|
||||
drI
|
||||
dry
|
||||
|
||||
@@ -22134,9 +22134,7 @@
|
||||
},
|
||||
/area/station/science/xenobiology)
|
||||
"cAn" = (
|
||||
/obj/machinery/requests_console{
|
||||
pixel_y = 30
|
||||
},
|
||||
/obj/machinery/requests_console/directional/north,
|
||||
/turf/simulated/floor/plasteel{
|
||||
dir = 1;
|
||||
icon_state = "darkbrown"
|
||||
@@ -51811,10 +51809,7 @@
|
||||
/area/station/maintenance/port)
|
||||
"jMh" = (
|
||||
/obj/item/kirbyplants,
|
||||
/obj/machinery/requests_console{
|
||||
department = "Psychiatrist";
|
||||
pixel_x = -30
|
||||
},
|
||||
/obj/machinery/requests_console/directional/west,
|
||||
/turf/simulated/floor/carpet,
|
||||
/area/station/medical/psych)
|
||||
"jMr" = (
|
||||
@@ -66556,14 +66551,10 @@
|
||||
},
|
||||
/area/station/service/bar)
|
||||
"onW" = (
|
||||
/obj/machinery/requests_console{
|
||||
department = "Janitorial";
|
||||
departmentType = 1;
|
||||
pixel_y = 30
|
||||
},
|
||||
/obj/effect/turf_decal/loading_area{
|
||||
dir = 4
|
||||
},
|
||||
/obj/machinery/requests_console/directional/north,
|
||||
/turf/simulated/floor/plasteel,
|
||||
/area/station/service/janitor)
|
||||
"ooj" = (
|
||||
|
||||
@@ -27348,9 +27348,6 @@
|
||||
/obj/item/radio/intercom/custom{
|
||||
pixel_y = 25
|
||||
},
|
||||
/obj/machinery/requests_console/directional/north{
|
||||
pixel_x = 30
|
||||
},
|
||||
/turf/simulated/floor/plasteel/dark,
|
||||
/area/station/turret_protected/ai)
|
||||
"bCY" = (
|
||||
@@ -81514,6 +81511,10 @@
|
||||
icon_state = "darkred"
|
||||
},
|
||||
/area/station/security/brig)
|
||||
"nYK" = (
|
||||
/obj/machinery/requests_console/directional/south,
|
||||
/turf/simulated/floor/plasteel/dark,
|
||||
/area/station/turret_protected/ai)
|
||||
"nYW" = (
|
||||
/obj/machinery/atmospherics/unary/vent_pump/on{
|
||||
dir = 4
|
||||
@@ -109444,7 +109445,7 @@ bBf
|
||||
bBf
|
||||
bIl
|
||||
bip
|
||||
bBf
|
||||
nYK
|
||||
bNM
|
||||
bPJ
|
||||
bRD
|
||||
|
||||
@@ -42579,10 +42579,6 @@
|
||||
},
|
||||
/obj/item/restraints/handcuffs,
|
||||
/obj/item/radio/off,
|
||||
/obj/machinery/requests_console/directional/east{
|
||||
department = "Security";
|
||||
departmentType = 5
|
||||
},
|
||||
/turf/simulated/floor/plasteel{
|
||||
dir = 4;
|
||||
icon_state = "red"
|
||||
|
||||
9
tools/maplint/lints/directional_reqconsoles.yml
Normal file
9
tools/maplint/lints/directional_reqconsoles.yml
Normal file
@@ -0,0 +1,9 @@
|
||||
help: "Use the specific directional subtypes for this requests console."
|
||||
/obj/machinery/requests_console:
|
||||
banned_variables:
|
||||
- pixel_x
|
||||
- pixel_y
|
||||
=/obj/machinery/requests_console:
|
||||
banned: true
|
||||
=/obj/machinery/requests_console/directional:
|
||||
banned: true
|
||||
7
tools/maplint/lints/reqconsole_varedits.yml
Normal file
7
tools/maplint/lints/reqconsole_varedits.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
help: "Request consoles are configured directly by their area."
|
||||
/obj/machinery/requests_console:
|
||||
banned_variables:
|
||||
- department
|
||||
- departmentType
|
||||
- announceAuth
|
||||
- announcementConsole
|
||||
Reference in New Issue
Block a user