diff --git a/wadsrc/static/zscript/base.txt b/wadsrc/static/zscript/base.txt index 89eea6bdeb..c0373fab05 100644 --- a/wadsrc/static/zscript/base.txt +++ b/wadsrc/static/zscript/base.txt @@ -417,8 +417,7 @@ class Thinker : Object native play static clearscope int Tics2Seconds(int tics) { - // This compensates for one tic being slightly less than 1/35 of a second. - return int(tics * (0.98 / TICRATE)); + return int(tics / TICRATE); } }