From c81370a9ecb38858ab384041bb2f10fac4747583 Mon Sep 17 00:00:00 2001 From: Maarten Lensink Date: Sun, 30 Aug 2020 15:40:26 +0300 Subject: [PATCH] Showing time when skipping counter --- wadsrc/static/zscript/ui/statscreen/statscreen_coop.zs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wadsrc/static/zscript/ui/statscreen/statscreen_coop.zs b/wadsrc/static/zscript/ui/statscreen/statscreen_coop.zs index 9aab6a4e92..6e4c2f0b8c 100644 --- a/wadsrc/static/zscript/ui/statscreen/statscreen_coop.zs +++ b/wadsrc/static/zscript/ui/statscreen/statscreen_coop.zs @@ -69,6 +69,10 @@ class CoopStatusScreen : StatusScreen if (dofrags) cnt_frags[i] = fragSum (i); } + + cnt_time = Thinker.Tics2Seconds(Plrs[me].stime); + cnt_total_time = Thinker.Tics2Seconds(wbs.totaltime); + PlaySound("intermission/nextstage"); ng_state = 12; }