Rename move to stamina

This commit is contained in:
kinther 2025-12-29 08:20:07 -08:00
parent 5d4d724e73
commit d4a7ccea5d
26 changed files with 171 additions and 170 deletions

View file

@ -598,10 +598,10 @@ do \
#define GET_HIT(ch) ((ch)->points.hit)
/** Maximum hit points of ch. */
#define GET_MAX_HIT(ch) ((ch)->points.max_hit)
/** Current move points (stamina) of ch. */
#define GET_MOVE(ch) ((ch)->points.move)
/** Maximum move points (stamina) of ch. */
#define GET_MAX_MOVE(ch) ((ch)->points.max_move)
/** Current stamina points of ch. */
#define GET_STAMINA(ch) ((ch)->points.stamina)
/** Maximum stamina points of ch. */
#define GET_MAX_STAMINA(ch) ((ch)->points.max_stamina)
/** Current mana points (magic) of ch. */
#define GET_MANA(ch) ((ch)->points.mana)
/** Maximum mana points (magic) of ch. */