diff --git a/code/__defines/_reagents.dm b/code/__defines/_reagents.dm index a3dee83dda..5c3a1720bb 100644 --- a/code/__defines/_reagents.dm +++ b/code/__defines/_reagents.dm @@ -8,7 +8,7 @@ #define GAS_VOLATILE_FUEL "volatile_fuel" // Gas Reagents -#define REAGENT_CARBON_DIOXIDE "Nitrogen" +#define REAGENT_CARBON_DIOXIDE "Carbon Dioxide" #define REAGENT_NITROGEN "Nitrogen" #define REAGENT_ID_NITROGEN "nitrogen" #define REAGENT_NITROUS_OXIDE "Nitrous Oxide" @@ -1245,7 +1245,7 @@ #define REAGENT_ID_TOXIN "toxin" #define REAGENT_PACID "Polytrinic acid" #define REAGENT_ID_PACID "pacid" -#define REAGEMT_PHORON "Phoron" +#define REAGENT_PHORON "Phoron" #define REAGENT_ID_PHORON "phoron" #define REAGENT_SPIDERTOXIN "Spidertoxin" #define REAGENT_ID_SPIDERTOXIN "spidertoxin" diff --git a/code/defines/gases.dm b/code/defines/gases.dm index cb7127fd0f..69c541655e 100644 --- a/code/defines/gases.dm +++ b/code/defines/gases.dm @@ -20,7 +20,7 @@ /decl/xgm_gas/phoron id = GAS_PHORON - name = REAGENT_ID_PHORON + name = REAGENT_PHORON //Note that this has a significant impact on TTV yield. //Because it is so high, any leftover phoron soaks up a lot of heat and drops the yield pressure. diff --git a/code/game/machinery/adv_med.dm b/code/game/machinery/adv_med.dm index fd6a622199..9535ddac85 100644 --- a/code/game/machinery/adv_med.dm +++ b/code/game/machinery/adv_med.dm @@ -189,7 +189,7 @@ occupantData["health"] = H.health occupantData["maxHealth"] = H.getMaxHealth() - occupantData["hasVirus"] = H.viruses.len + occupantData["hasVirus"] = LAZYLEN(H.viruses) occupantData["bruteLoss"] = H.getBruteLoss() occupantData["oxyLoss"] = H.getOxyLoss() @@ -379,7 +379,7 @@ dat += (occupant.health > (occupant.getMaxHealth() / 2) ? span_blue(health_text) : span_red(health_text)) dat += "
" - if(occupant.viruses.len) + if(LAZYLEN(occupant.viruses)) for(var/datum/disease/D in occupant.GetViruses()) if(D.visibility_flags & HIDDEN_SCANNER) continue diff --git a/code/modules/reagents/reagents/toxins.dm b/code/modules/reagents/reagents/toxins.dm index 89aebe0f60..06126f6854 100644 --- a/code/modules/reagents/reagents/toxins.dm +++ b/code/modules/reagents/reagents/toxins.dm @@ -139,7 +139,7 @@ strength = 5 /datum/reagent/toxin/phoron - name = REAGEMT_PHORON + name = REAGENT_PHORON id = REAGENT_ID_PHORON description = "Phoron in its liquid form." taste_mult = 1.5