Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@
return

new_owner.sprint_length_max -= buff_amount
new_owner.sprint_length = min(new_owner.sprint_length_max, new_owner.sprint_length)
1 change: 1 addition & 0 deletions maplestation_modules/code/datums/quirks/neutral.dm
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
sprint_length_multiplier = new_sprint_length
sprint_regen_multiplier = new_sprint_regen
quirk_human.sprint_length_max *= new_sprint_length
quirk_human.sprint_length = min(quirk_human.sprint_length_max, quirk_human.sprint_length)
quirk_human.sprint_regen_per_second *= new_sprint_regen

#define RANDOM_INNATE_MUTATION "Random"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
if(station_check)
if(human_source.unset_pain_mod(PAIN_MOD_OFF_STATION))
human_source.sprint_length_max /= 1.5
human_source.sprint_length = min(human_source.sprint_length_max, human_source.sprint_length)
human_source.sprint_regen_per_second /= 1.5
action.Remove(human_source)
to_chat(human_source, span_green("Returning to the station, you feel much more vulnerable to incoming pain."))
Expand Down
Loading