Add level flag for plane of fire fumaroles

Also reduce the size of the gas clouds.

Breaks saves and bones.
This commit is contained in:
Pasi Kallinen
2023-03-17 19:35:57 +02:00
parent f2b75c3b0e
commit 4799fc937a
8 changed files with 21 additions and 7 deletions

View File

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

View File

@@ -392,6 +392,7 @@ struct levelflags {
Bitfield(rndmongen, 1); /* random monster generation allowed? */
Bitfield(deathdrops, 1); /* monsters may drop corpses/death drops */
Bitfield(noautosearch, 1); /* automatic searching disabled */
Bitfield(fumaroles, 1); /* lava emits poison gas at random */
schar temperature; /* +1 == hot, -1 == cold */
};