Skip to content

Commit

Permalink
Minor map fixes (tgstation#50086)
Browse files Browse the repository at this point in the history
* Minor map fixes part 1

Donut:
- Gave geneticist medical access on donut
- Geneticist can now use genetics maint and South genetic door
- Replaced genetics door with glass door (for aesthetics)

Meta:
- Fixed cell 3 door/timer being linked to cell 2. Now cell 3 is independent from cell 2.

Bar bluespace shelter:
- Gave mining access to bar area (it's sort of redundant otherwise)

* Minor map fixes part 2

- Added "purge" AI module to risky AI module spawner
- Added "reset" AI module to AI chamber on donut

* Fixed trailing newline
  • Loading branch information
dablusniper authored Mar 21, 2020
1 parent 546c777 commit 0452946
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 10 deletions.
10 changes: 5 additions & 5 deletions _maps/map_files/Donutstation/Donutstation.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -14021,14 +14021,14 @@
/turf/open/floor/plasteel,
/area/hydroponics)
"aFR" = (
/obj/machinery/door/airlock/research/glass{
name = "Genetics Research";
req_access_txt = "5; 9; 68"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden/layer3,
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
/obj/machinery/door/airlock/research/glass{
name = "Genetics Research";
req_access_txt = "5;9"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay/zone2)
"aFS" = (
Expand Down Expand Up @@ -33797,7 +33797,7 @@
"bwm" = (
/obj/machinery/door/airlock/maintenance{
name = "Genetics Maintenance Access";
req_access_txt = "5; 9; 68"
req_access_txt = "5;9"
},
/turf/open/floor/plating,
/area/maintenance/port)
Expand Down
3 changes: 2 additions & 1 deletion _maps/map_files/Donutstation/Donutstation_LVL2.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -7780,6 +7780,7 @@
/obj/structure/sign/plaques/kiddie{
pixel_x = -32
},
/obj/item/aiModule/supplied/quarantine,
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"qV" = (
Expand Down Expand Up @@ -8329,13 +8330,13 @@
/obj/machinery/light{
dir = 4
},
/obj/item/aiModule/supplied/quarantine,
/obj/machinery/airalarm{
dir = 8;
pixel_x = 24;
req_access = null;
req_one_access_txt = "2;24"
},
/obj/item/aiModule/reset,
/turf/open/floor/plasteel/dark,
/area/ai_monitored/turret_protected/ai_upload)
"rX" = (
Expand Down
7 changes: 7 additions & 0 deletions _maps/map_files/Donutstation/job_changes.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#define JOB_MODIFICATION_MAP_NAME "Donutstation"

/datum/job/geneticist/New()
..()
MAP_JOB_CHECK
access += ACCESS_MEDICAL
minimal_access += ACCESS_MEDICAL
4 changes: 2 additions & 2 deletions _maps/map_files/MetaStation/MetaStation.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -68596,8 +68596,8 @@
/area/medical/virology)
"dBX" = (
/obj/machinery/door/window/brigdoor/security/cell{
id = "Cell 2";
name = "Cell 2"
id = "Cell 3";
name = "Cell 3"
},
/obj/effect/turf_decal/tile/red,
/obj/effect/turf_decal/tile/red{
Expand Down
2 changes: 1 addition & 1 deletion _maps/templates/shelter_3.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@
/area/survivalpod)
"v" = (
/obj/machinery/door/window/survival_pod{
req_access_txt = "25"
req_access_txt = "25;48"
},
/turf/open/floor/pod/dark,
/area/survivalpod)
Expand Down
3 changes: 2 additions & 1 deletion code/game/objects/effects/spawners/lootdrop.dm
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,8 @@
/obj/item/aiModule/core/full/balance,
/obj/item/aiModule/core/full/tyrant,
/obj/item/aiModule/core/full/thermurderdynamic,
/obj/item/aiModule/core/full/damaged
/obj/item/aiModule/core/full/damaged,
/obj/item/aiModule/reset/purge
)

// Tech storage circuit board spawners
Expand Down
3 changes: 3 additions & 0 deletions code/modules/jobs/map_changes/map_changes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@

#include "..\..\..\..\_maps\map_files\BoxStation\job_changes.dm"
#undef JOB_MODIFICATION_MAP_NAME

#include "..\..\..\..\_maps\map_files\Donutstation\job_changes.dm"
#undef JOB_MODIFICATION_MAP_NAME

0 comments on commit 0452946

Please sign in to comment.