diff --git a/code/modules/food_and_drinks/drinks/drinks/shotglass.dm b/code/modules/food_and_drinks/drinks/drinks/shotglass.dm index cbd8714dabf..e0f6b8be47c 100644 --- a/code/modules/food_and_drinks/drinks/drinks/shotglass.dm +++ b/code/modules/food_and_drinks/drinks/drinks/shotglass.dm @@ -111,13 +111,13 @@ extinguishShot() /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass/attack(mob/living/carbon/human/user) - if((CLUMSY in user.mutations) && prob(75) && on_fire) + if((CLUMSY in user.mutations) && prob(50) && on_fire) clumsilyDrink(user) else ..() /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass/MouseDrop(mob/living/carbon/human/user) - if((CLUMSY in user.mutations) && prob(75) && on_fire) + if((CLUMSY in user.mutations) && prob(50) && on_fire) clumsilyDrink(user) else ..() diff --git a/code/modules/reagents/chemistry/reagents/alcohol.dm b/code/modules/reagents/chemistry/reagents/alcohol.dm index b6151ceedde..30b9495395e 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol.dm @@ -429,7 +429,7 @@ id = "flamingmoe" description = "This seems like a bunch of various alcohols thrown together, along with what looks like prescription medicine..." reagent_state = LIQUID - color = "#58447f" + color = "#58447f" //rgb: 88, 66, 127 alcohol_perc = 0.5 drink_icon = "flamingmoeglass" drink_name = "Flaming Moe" diff --git a/code/modules/reagents/chemistry/recipes/drinks.dm b/code/modules/reagents/chemistry/recipes/drinks.dm index 303baea7a4a..c348db060ff 100644 --- a/code/modules/reagents/chemistry/recipes/drinks.dm +++ b/code/modules/reagents/chemistry/recipes/drinks.dm @@ -228,7 +228,7 @@ name = "Flaming Moe" id = "flamingmoe" result = "flamingmoe" - required_reagents = list("vodka" = 1, "gin" = 1, "cognac" = 1, "tequila" = 1, "oculine" = 1) //Close enough + required_reagents = list("vodka" = 1, "gin" = 1, "cognac" = 1, "tequila" = 1, "salglu_solution" = 1) //Close enough min_temp = 374 //Fire makes it good! result_amount = 5 mix_sound = 'sound/goonstation/misc/drinkfizz.ogg'