diff --git a/code/modules/hallucinations/mob.dm b/code/modules/hallucinations/mob.dm index dde2d03a4a1..9562a84ee1a 100644 --- a/code/modules/hallucinations/mob.dm +++ b/code/modules/hallucinations/mob.dm @@ -33,7 +33,7 @@ if(!client || stat || world.time < next_hallucination) return - var/hall_delay = rand(180,250) //Time between hallucinations, modified below. + var/hall_delay = rand(30, 40) SECONDS //Time between hallucinations, modified below. //Modifying time between effects based on strength and chemicals switch(hallucination) //26-149 are intentionally left off, as they do not modify the delay. This is a pretty common range for hallucinations. @@ -49,7 +49,7 @@ else hall_delay *= min(1.25, abs(chem_effects[CE_HALLUCINATE])) //if CE_HALLUCINATE is -1, 25% more time between if(chem_effects[CE_HALLUCINATE] > 0) - hall_delay /= max(1.25, chem_effects[CE_HALLUCINATE]) //if CE_HALLUCINATE is 1, 25% less time between + hall_delay /= max(1.15, chem_effects[CE_HALLUCINATE]) //if CE_HALLUCINATE is 1, 15% less time between next_hallucination = world.time + hall_delay var/datum/hallucination/H = SShallucinations.get_hallucination(src) diff --git a/html/changelogs/doxxmedearly-hallucinationsmybeloved.yml b/html/changelogs/doxxmedearly-hallucinationsmybeloved.yml new file mode 100644 index 00000000000..462cd75d9ac --- /dev/null +++ b/html/changelogs/doxxmedearly-hallucinationsmybeloved.yml @@ -0,0 +1,4 @@ +author: Doxxmedearly +delete-after: True +changes: + - tweak: "There is now more time between the various hallucination effects, to give players time to properly react to them."