follow-up: evolve placeholder content to match variant
suggestion by paxed Increments EDITLEVEL again.
This commit is contained in:
@@ -182,9 +182,16 @@ struct edog {
|
||||
Bitfield(killed_by_u, 1); /* you attempted to kill him */
|
||||
};
|
||||
|
||||
/* for saving the hero's rank in bones monster */
|
||||
struct mon_former_rank {
|
||||
int lev;
|
||||
short mnum;
|
||||
boolean female;
|
||||
};
|
||||
|
||||
struct former_incarnation {
|
||||
unsigned parentmid; /* make clobber-detection possible */
|
||||
char rank[25]; /* for bones' ghost rank in their former life */
|
||||
unsigned parentmid; /* make clobber-detection possible */
|
||||
struct mon_former_rank rank; /* for bones' ghost rank in former life */
|
||||
};
|
||||
|
||||
/***
|
||||
|
||||
@@ -260,14 +260,6 @@
|
||||
|| objects[(obj)->otyp].oc_material == VEGGY \
|
||||
|| ((obj)->otyp == CORPSE && (obj)->corpsenm == PM_LICHEN))))
|
||||
|
||||
/* is_bones_monster() is currently only used by hardfought livelog,
|
||||
* but is included as part of savefile field compatibility adjustments.
|
||||
*/
|
||||
#define is_bones_monster(ptr) \
|
||||
((ptr) == &mons[PM_GHOST] || (ptr) == &mons[PM_GHOUL] \
|
||||
|| (ptr) == &mons[PM_VAMPIRE] || (ptr) == &mons[PM_WRAITH] \
|
||||
|| (ptr) == &mons[PM_GREEN_SLIME] || (ptr)->mlet == S_MUMMY)
|
||||
|
||||
#ifdef PMNAME_MACROS
|
||||
#define pmname(ptr,g) ((((g) == MALE || (g) == FEMALE) && (ptr)->pmnames[g]) \
|
||||
? (ptr)->pmnames[g] : (ptr)->pmnames[NEUTRAL])
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
* Incrementing EDITLEVEL can be used to force invalidation of old bones
|
||||
* and save files.
|
||||
*/
|
||||
#define EDITLEVEL 117
|
||||
#define EDITLEVEL 118
|
||||
|
||||
/*
|
||||
* Development status possibilities.
|
||||
|
||||
Reference in New Issue
Block a user