3.0 Prerelease 125 2025-08-12
Downloads:
Bug Fixes
Player
- stop message string at expected place for "Wait for A" SCC
8259ac6b2
This regressed recently (probably 3.0.0-prerelease.104+2025-05-14).
- disable stack zasm optimize pass for now
4917ec993
Found a case where this broke some code, so turning off for now.
- disable zasm optimizer by default for now
c23c24a3e
Gotta work through a few bugs, gonna turn off entirely for now.
- correctly load saves for recently compiled quests
b99333b01
Regressed recently in 4b40449 (3.0.0-prerelease.118+2025-07-11).
ZScript
- produce correct codegen for objects with default constructors
99a548a52
Creating an custom object inside another's constructor generate incorrect code when the second class has a default (or empty) constructor.
For example, this code would error and not set the
b
variable onf
.class foo { bar b; foo() { b = new bar(); } } class bar { bar() { } } foo f = new foo();