Skip to content

Commit

Permalink
remove overdose
Browse files Browse the repository at this point in the history
  • Loading branch information
thudner24 committed Oct 2, 2024
1 parent d6935cb commit 19622a8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -685,12 +685,14 @@
/datum/reagent/consumable/monkey_energy/on_mob_end_metabolize(mob/living/affected_mob)
. = ..()
affected_mob.remove_movespeed_modifier(/datum/movespeed_modifier/reagent/monkey_energy)

/// DOPPLER SHIFT REMOVAL BEGIN
/*
/datum/reagent/consumable/monkey_energy/overdose_process(mob/living/affected_mob, seconds_per_tick, times_fired)
. = ..()
if(SPT_PROB(7.5, seconds_per_tick))
affected_mob.say(pick_list_replacements(BOOMER_FILE, "boomer"), forced = /datum/reagent/consumable/monkey_energy)

*/
/// DOPPLER SHIFT REMOVAL END
/datum/reagent/consumable/ice
name = "Ice"
description = "Frozen water, your dentist wouldn't like you chewing this."
Expand Down
6 changes: 4 additions & 2 deletions code/modules/reagents/chemistry/reagents/food_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1022,12 +1022,14 @@
taste_description = "smoke"
overdose_threshold = 15
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED

/// DOPPLER SHIFT REMOVAL BEGIN
/*
/datum/reagent/consumable/char/overdose_process(mob/living/affected_mob, seconds_per_tick, times_fired)
. = ..()
if(SPT_PROB(13, seconds_per_tick))
affected_mob.say(pick_list_replacements(BOOMER_FILE, "boomer"), forced = /datum/reagent/consumable/char)

*/
/// DOPPLER SHIFT REMOVAL END
/datum/reagent/consumable/bbqsauce
name = "BBQ Sauce"
description = "Sweet, smoky, savory, and gets everywhere. Perfect for grilling."
Expand Down

0 comments on commit 19622a8

Please sign in to comment.