3.0 Prerelease 66 2024-09-01
Downloads:
Features
- add configurable weapon sfx to enemies (#977)
e71f8dc99
This can also be configured in ZScript with
npc->WeaponSFX
andnpcdata->WeaponSFX
. - support delete keyboard shortcuts for most text controls
757c19430
- Ctrl+Backspace (Mac: Opt+Backspace) - deletes from cursor to next word boundrary
- Alt+Backspace (Mac: Cmd+Backspace) - deletes from cursor to beginning of the line
Bug Fixes
- generate correct version string for 1.92 quests
52dc20365
Player
- lockblocks on layer 0 no longer ignored in cave dmaps if locked door present
05c7e0053
Context: https://discord.com/channels/876899628556091432/1278165595321405554
- pause music when opening player data with cheat shortcut
8810f9a16
- avoid crash in Go To cheat by checking destination is valid
edcda9e7c
This cheat dialog expects you to input the screen number before any DMap xoff is applied, which can result in directing the game to load an invalid screen and crash. Now the screen is validated, and the xoff is displayed next to each DMap in the dropdown.
- fire trail weapons glow in dark rooms, just like flames
5c3785599
ZScript
- scripts no longer use wrong context after many sprites created
d88333f92
After 65536 sprites have been created without closing the player, the ID of subsequent sprites was too high for how the internal script engine stored the state for each script. This resulted in randomly using some other script's state, causing general mayhem.