Skip to content

Commit

Permalink
- fixed: UMAPINFO partime was multiplied by ticrate
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Aug 3, 2020
1 parent bda49d0 commit 5f8b313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gamedata/umapinfo.cpp
Expand Up @@ -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"))
{
Expand Down

0 comments on commit 5f8b313

Please sign in to comment.