- Fixed: A_CustomMissile with aimmode 2 ignored spawnofs_xy.
- Changed savegame versioning so that the written version is never lower than the minmum one reported as compatible. - Added mirrored movement modes for linked sectors. - Added Eternity-style initialization for linked sectors as a new subtype of Static_Init. - Added linked sectors. The control sector determines how they move but if any one of the linked sectors is blocked, movement for all linked sectors will be affected. This will allow lifts consisting out of more than one sector without the risk of breaking them if only one of the sectors is blocked. - Fixed: A_Mushroom created an actor on the stack. SVN r825 (trunk)
This commit is contained in:
parent
82f3182e5b
commit
ca43ea7345
19 changed files with 675 additions and 165 deletions
|
|
@ -75,10 +75,10 @@
|
|||
// SAVESIG should match SAVEVER.
|
||||
|
||||
// MINSAVEVER is the minimum level snapshot version that can be loaded.
|
||||
#define MINSAVEVER 817
|
||||
#define MINSAVEVER 825
|
||||
|
||||
#if SVN_REVISION_NUMBER == 0
|
||||
// This can happen if svnrevision is not updated properly (e.g. compiling while offline)
|
||||
#if SVN_REVISION_NUMBER < MINSAVEVER
|
||||
// Never write a savegame with a version lower than what we need
|
||||
#define SAVEVER MINSAVEVER
|
||||
#define MAKESAVESIG(x) "ZDOOMSAVE" #x
|
||||
#define SAVESIG MAKESAVESIG(SAVEVER)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue