Converts gas, mat and reagent strings to defines

This commit is contained in:
Kashargul
2024-12-06 17:26:00 +01:00
parent 780c07439b
commit 80edcd2c3d
155 changed files with 1183 additions and 1054 deletions
+5 -5
View File
@@ -791,8 +791,8 @@
/datum/gas_mixture/belly_air/New()
. = ..()
gas = list(
"oxygen" = 21,
"nitrogen" = 79)
GAS_O2 = 21,
GAS_N2 = 79)
/datum/gas_mixture/belly_air/vox
volume = 2500
@@ -802,7 +802,7 @@
/datum/gas_mixture/belly_air/vox/New()
. = ..()
gas = list(
"phoron" = 100)
GAS_PHORON = 100)
/datum/gas_mixture/belly_air/zaddat
volume = 2500
@@ -812,7 +812,7 @@
/datum/gas_mixture/belly_air/zaddat/New()
. = ..()
gas = list(
"oxygen" = 100)
GAS_O2 = 100)
/datum/gas_mixture/belly_air/nitrogen_breather
volume = 2500
@@ -822,7 +822,7 @@
/datum/gas_mixture/belly_air/nitrogen_breather/New()
. = ..()
gas = list(
"nitrogen" = 100)
GAS_N2 = 100)
/mob/living/proc/feed_grabbed_to_self_falling_nom(var/mob/living/user, var/mob/living/prey)