- fixed: UMAPINFO partime was multiplied by ticrate

https://www.doomworld.com/forum/post/2167749
This commit is contained in:
alexey.lysiuk 2020-08-03 12:45:20 +03:00
parent bda49d0bf7
commit 5f8b313446
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ static int ParseStandardProperty(FScanner &scanner, UMapEntry *mape)
else if (!pname.CompareNoCase("partime"))
{
scanner.MustGetValue(false);
mape->partime = TICRATE * scanner.Number;
mape->partime = scanner.Number;
}
else if (!pname.CompareNoCase("intertext"))
{