Describe totskillpoints vs skillpoints

This commit is contained in:
Rob Pearce 2023-05-10 14:55:17 +10:00
parent 54c283ea11
commit 2fd8fb0539
1 changed files with 3 additions and 3 deletions

6
defs.h
View File

@ -11,7 +11,7 @@
#define OBNOS1(o) (o->amt == 1) ? "" : "s"
#define ISINRANGE(a,min,max) ((a >= min) && (a <= max))
#define foreach_bucket(a) for (a=0; a<NHASHBUCKETS; a++)
#define foreach_bucket(a) for (a=0; a<NHASHBUCKETS; a++)
#define cset(a) _cset(a,__func__)
// #define PRACTICETIME 15 // #attempts it takes to learn new weapon skill
@ -5221,8 +5221,8 @@ typedef struct lifeform_s {
int level;
int newlevel;
long xp,skillxp;
int skillpoints;
long totskillpoints;
int skillpoints; // Amount of skill points we have right now
long totskillpoints; // Total skill points earned ever
int hp,maxhp;
int mp,maxmp;
float stamina;