From f620fab569f21c9cc1001d00af04948cf2195ccd Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Mon, 27 Apr 2015 13:50:50 -0400 Subject: [PATCH] [Goonchem] Fixes --- code/modules/reagents/Chemistry-Machinery.dm | 2 +- code/modules/reagents/newchem/food.dm | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/reagents/Chemistry-Machinery.dm b/code/modules/reagents/Chemistry-Machinery.dm index 5a98027367c..897ecad30b2 100644 --- a/code/modules/reagents/Chemistry-Machinery.dm +++ b/code/modules/reagents/Chemistry-Machinery.dm @@ -278,7 +278,7 @@ energy = 100 max_energy = 100 desc = "A technological marvel, supposedly able to mix just the mixture you'd like to drink the moment you ask for one." - dispensable_reagents = list("ice","cream","beer","kahlua","whiskey","wine","vodka","gin","rum","tequilla","vermouth","cognac","ale","mead") + dispensable_reagents = list("ice","cream", "cider", "beer","kahlua","whiskey","wine","vodka","gin","rum","tequilla","vermouth","cognac","ale","mead") hack_message = "You disable the 'nanotrasen-are-cheap-bastards' lock, enabling hidden and very expensive boozes." unhack_message = "You re-enable the 'nanotrasen-are-cheap-bastards' lock, disabling hidden and very expensive boozes." hacked_reagents = list("goldschlager","patron", "absinthe", "ethanol", "nothing") diff --git a/code/modules/reagents/newchem/food.dm b/code/modules/reagents/newchem/food.dm index cbc9123e686..42b259c0ea7 100644 --- a/code/modules/reagents/newchem/food.dm +++ b/code/modules/reagents/newchem/food.dm @@ -240,9 +240,9 @@ datum/reagent/cheese/reaction_turf(var/turf/T, var/volume) return /datum/chemical_reaction/cheese - name = "weird_cheese" - id = "weird_cheese" - result = "weird_cheese" + name = "cheese" + id = "cheese" + result = "cheese" required_reagents = list("vomit" = 1, "milk" = 1) result_amount = 1 mix_message = "The mixture curdles up."