diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm index 9cb52aafe2f..ee6db362108 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/negative.dm @@ -110,7 +110,7 @@ name = "Liver of Air" desc = "The only way you can hold a drink is if it's in your own two hands, and even then you'd best not inhale too deeply near it. Drinks hit thrice as hard. You may wish to note this down in your medical records, and perhaps your exploitable info as well." cost = -1 - var_changes = list("alcohol_mod" = 3) + var_changes = list("chem_strength_alcohol" = 3) /datum/trait/negative/pain_intolerance_basic name = "Pain Intolerant" diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm index 1c4d0a972e6..8e0074a344f 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm @@ -27,13 +27,13 @@ name = "Liver of Lilies" desc = "You have a hard time with alcohol. Maybe you just never took to it, or maybe it doesn't agree with you... either way, drinks hit twice as hard. You may wish to note this down in your medical records, and perhaps your exploitable info as well." cost = 0 - var_changes = list("alcohol_mod" = 2) + var_changes = list("chem_strength_alcohol" = 2) /datum/trait/neutral/alcohol_tolerance_basic name = "Liver of Iron" desc = "You can hold drinks much better than those lily-livered land-lubbers! Arr! You may wish to note this down in your medical records." cost = 0 - var_changes = list("alcohol_mod" = 0.75) + var_changes = list("chem_strength_alcohol" = 0.75) /* /datum/trait/neutral/cryogenic diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm index 8377592a553..3b4ed0b3542 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm @@ -157,13 +157,13 @@ name = "Liver of Steel" desc = "Drinks tremble before your might! You can hold your alcohol twice as well as those blue-bellied barnacle boilers! You may wish to note this down in your medical records." cost = 1 - var_changes = list("alcohol_mod" = 0.5) + var_changes = list("chem_strength_alcohol" = 0.5) /datum/trait/positive/alcohol_immunity name = "Liver of Durasteel" desc = "You've drunk so much that most booze doesn't even faze you. It takes something like a Pan-Galactic or a pint of Deathbell for you to even get slightly buzzed. You may wish to note this down in your medical records." cost = 2 - var_changes = list("alcohol_mod" = 0.25) + var_changes = list("chem_strength_alcohol" = 0.25) /datum/trait/positive/pain_tolerance_basic name = "Pain Tolerant"