Add stormy level flag

Which makes clouds create lightning bolts at random.
This flag is used on the plane of air.

Breaks saves and bones.
This commit is contained in:
Pasi Kallinen
2023-03-17 20:13:29 +02:00
parent 4799fc937a
commit aa83dadc1e
6 changed files with 8 additions and 4 deletions

View File

@@ -17,7 +17,7 @@
* Incrementing EDITLEVEL can be used to force invalidation of old bones
* and save files.
*/
#define EDITLEVEL 79
#define EDITLEVEL 80
/*
* Development status possibilities.

View File

@@ -393,6 +393,7 @@ struct levelflags {
Bitfield(deathdrops, 1); /* monsters may drop corpses/death drops */
Bitfield(noautosearch, 1); /* automatic searching disabled */
Bitfield(fumaroles, 1); /* lava emits poison gas at random */
Bitfield(stormy, 1); /* clouds create lightning bolts at random */
schar temperature; /* +1 == hot, -1 == cold */
};