Skip to content

Commit

Permalink
Misc Phoron Patches
Browse files Browse the repository at this point in the history
  • Loading branch information
Atermonera committed Sep 21, 2024
1 parent f52821b commit 02d68d0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
gas_symbol_html = "Ph"
gas_symbol = "Ph"
boiling_point = -90 CELSIUS
melting_point = -120 CELSIUS
reflectiveness = MAT_VALUE_SHINY
value = 1.6
sparse_material_weight = 10
Expand Down
16 changes: 8 additions & 8 deletions maps/exodus/exodus-2.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -30873,7 +30873,7 @@
"bns" = (
/obj/machinery/door/airlock/maintenance{
autoset_access = 0;
req_access = list(list(access_maint_tunnels, access_emergency_storage, access_research))
req_access = list("ACCESS_MAINT", "ACCESS_EMERGENCY_STORAGE", "ACCESS_RESEARCH")
},
/obj/structure/cable{
icon_state = "1-2"
Expand Down Expand Up @@ -37702,7 +37702,7 @@
/obj/machinery/door/airlock{
name = "Starboard Emergency Storage";
autoset_access = 0;
req_access = list(list(access_maint_tunnels, access_emergency_storage, access_research))
req_access = list("ACCESS_MAINT", "ACCESS_EMERGENCY_STORAGE", "ACCESS_RESEARCH")
},
/obj/structure/cable{
icon_state = "1-2"
Expand Down Expand Up @@ -39785,7 +39785,7 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
autoset_access = 0;
req_access = list(list(access_maint_tunnels, access_research))
req_access = list("ACCESS_MAINT", "ACCESS_RESEARCH")
},
/turf/floor/tiled/techfloor/grid,
/area/exodus/maintenance/research_shuttle)
Expand Down Expand Up @@ -39852,7 +39852,7 @@
"bFy" = (
/obj/machinery/door/airlock/maintenance{
autoset_access = 0;
req_access = list(list(access_maint_tunnels, access_research))
req_access = list("ACCESS_MAINT", "ACCESS_RESEARCH")
},
/obj/structure/cable{
icon_state = "1-2"
Expand Down Expand Up @@ -42121,7 +42121,7 @@
},
/obj/machinery/door/airlock/maintenance{
autoset_access = 0;
req_access = list(list(access_maint_tunnels, access_research))
req_access = list("ACCESS_MAINT", "ACCESS_RESEARCH")
},
/turf/floor/tiled/techfloor/grid,
/area/exodus/maintenance/research_port)
Expand Down Expand Up @@ -45251,7 +45251,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/door/airlock/maintenance{
autoset_access = 0;
req_access = list(list(access_maint_tunnels, access_research))
req_access = list("ACCESS_MAINT", "ACCESS_RESEARCH")
},
/turf/floor/tiled/techfloor/grid,
/area/exodus/maintenance/research_shuttle)
Expand Down Expand Up @@ -48816,7 +48816,7 @@
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
/obj/machinery/door/airlock/maintenance{
autoset_access = 0;
req_access = list(list(access_maint_tunnels, access_research))
req_access = list("ACCESS_MAINT", "ACCESS_RESEARCH")
},
/turf/floor/tiled/techfloor/grid,
/area/exodus/maintenance/research_starboard)
Expand Down Expand Up @@ -64522,7 +64522,7 @@
},
/obj/machinery/door/airlock/maintenance{
autoset_access = 0;
req_access = list(list(access_maint_tunnels, access_research))
req_access = list("ACCESS_MAINT", "ACCESS_RESEARCH")
},
/turf/floor/plating,
/area/exodus/maintenance/research_starboard)
Expand Down
2 changes: 1 addition & 1 deletion maps/exodus/exodus.dm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "../../mods/gamemodes/mixed/_mixed.dme"

#include "../../mods/content/mundane.dm"
#include "../../mods/content/bigpharma/_bigpharma.dme"
#include "../../mods/content/baychems/_baychems.dme"
#include "../../mods/content/corporate/_corporate.dme"
#include "../../mods/content/government/_government.dme"
#include "../../mods/content/matchmaking/_matchmaking.dme"
Expand Down
4 changes: 2 additions & 2 deletions mods/content/baychems/reactions.dm
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
result = /decl/material/liquid/painkillers
required_reagents = list(
/decl/material/liquid/stabilizer = 1,
/decl/material/gas/ammonia = 1,
/decl/material/gas/nitrogen = 1,
/decl/material/liquid/water = 1
)
result_amount = 3
Expand Down Expand Up @@ -73,4 +73,4 @@
/decl/chemical_reaction/drug/psychoactives
name = "Space Drugs"
minimum_temperature = 0
maximum_temperature = INFINITY
maximum_temperature = INFINITY

0 comments on commit 02d68d0

Please sign in to comment.