Stamina Full (#11311)

This commit is contained in:
Geeves
2021-02-27 13:54:35 +01:00
committed by GitHub
parent 94ba31abee
commit d88e2f4d99
3 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -414,7 +414,7 @@
else
if (!user.stamina_bar)
user.stamina_bar = new(user, user.max_stamina, src)
user.stamina_bar.goal = user.max_stamina
user.stamina_bar.update(user.stamina)
if (user.m_intent == M_RUN)
@@ -626,6 +626,7 @@
to_chat(src, SPAN_WARNING(pick("The itch is becoming progressively worse.", "You need to scratch that itch!", "The itch isn't going!")))
sprint_speed_factor = species.sprint_speed_factor
max_stamina = species.stamina
stamina_recovery = species.stamina_recovery
sprint_cost_factor = species.sprint_cost_factor
move_delay_mod = 0
+7
View File
@@ -0,0 +1,7 @@
author: Geeves
delete-after: True
changes:
- bugfix: "Synaptizine no longer exponentially increases your stamina into infinity."
- bugfix: "The stamina bar above your move intent now properly updates your max stamina value."