Load this code as zscript.zs lump and start any Doom map with a zombie:
Code: Select all
version 4.14
class TestZombie : Zombieman replaces Zombieman
{
override void BeginPlay()
{
//Console.Printf("I'll cause a VM abort".makeLower());
Console.Printf("---------");
Console.Printf("I'M OLD");
Console.Printf("I'm new".makeLower());
}
}
Expected result:
Code: Select all
---------
I'M OLD
i'm new
Actual result:
Code: Select all
---------
I'M OLD
i'm old
Reproduces on GZDoom 4.14 and the latest master (commit f892a750b "Silence integer division warning").
Reproduces on Manjaro Linux, Linux 6.6.103-3-MANJARO on x86_64, and Debian GNU/Linux 13 (trixie), Linux 6.12.34+rpt-rpi-v8 on aarch64.