diff --git a/menudef.txt b/menudef.txt index 510af6b..881591f 100644 --- a/menudef.txt +++ b/menudef.txt @@ -98,9 +98,11 @@ OptionMenu "UTCreditsMenu" StaticText "Epic Games", "White" StaticText " " StaticText "$FLAK_CPATRON", "Gold" - StaticText "john, Alexa Jones-Gonzales, Jonas Höglund,", "White" - StaticText "Xada Xephron, Zard1084, Jonathan Nemo,", "White" - StaticText "NekoMithos, m8f, 3d0xp0xy", "White" + StaticText "Christian Grab, john, Alexa Jones-Gonzales,", "White" + StaticText "Jonas Höglund, Valerie Thiessen, Corey Hectus,", "White" + StaticText "dac, Pietro Gagliardi, Artem Bashev,", "White" + StaticText "Xada Xephron, Zard1084, NekoMithos,", "White" + StaticText "Max Zeal, m8f, 3d0xp0xy", "White" StaticText " " StaticText "$FLAK_CTHANK", "Gold" StaticText "KynikossDragonn, Raffine52, KeksDose, Skerion", "White" diff --git a/zscript/utcommon.zsc b/zscript/utcommon.zsc index 4b6e30a..bfce6c2 100644 --- a/zscript/utcommon.zsc +++ b/zscript/utcommon.zsc @@ -933,7 +933,7 @@ Class UTPlayer : DoomPlayer || InStateSequence(CurState,FindState("Turn")) ) SetStateLabel("See2"); } - else if ( !bNoGravity && (waterlevel < 1) ) + else if ( !bNoGravity && (waterlevel < 1) && abs(pos.z-floorz) > maxstepheight ) { // Falling if ( InStateSequence(CurState,FindState("Spawn")) @@ -1086,7 +1086,7 @@ Class UTPlayer : DoomPlayer // Gib the player, the camera will attach to the head at this point A_GibMe(); A_NoBlocking(); - SetStateLabel('null'); + SetStateLabel("IceBurst"); } void A_PainDT() @@ -1293,6 +1293,10 @@ Class UTPlayer : DoomPlayer PICE A 5 A_FreezeDeath(); PICE A 1 A_FreezeDeathChunksDT(); Wait; + IceBurst: + TNT1 A 35; + TNT1 A 1 A_CheckPlayerDone(); + Wait; } }