From c28e53511cbc635b6e7cad28c2fbc3732682cc80 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Tue, 5 Jan 2021 19:48:32 -0500 Subject: [PATCH] - fix bonuscount as uint --- wadsrc/static/zscript/actors/player/player.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/player/player.zs b/wadsrc/static/zscript/actors/player/player.zs index 944e9bd5a..f48027cce 100644 --- a/wadsrc/static/zscript/actors/player/player.zs +++ b/wadsrc/static/zscript/actors/player/player.zs @@ -2675,7 +2675,7 @@ struct PlayerInfo native play // self is what internally is known as player_t native int itemcount; native int secretcount; native uint damagecount; - native int bonuscount; + native uint bonuscount; native int hazardcount; native int hazardinterval; native Name hazardtype;