Describe totskillpoints vs skillpoints
This commit is contained in:
parent
54c283ea11
commit
2fd8fb0539
6
defs.h
6
defs.h
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue