updated changelog, transparent debug console frame, stuff

This commit is contained in:
Regalis
2016-08-08 23:32:14 +03:00
parent 4713f59efb
commit d4338580c7
6 changed files with 73 additions and 4 deletions

View File

@@ -413,7 +413,7 @@ namespace Barotrauma
public static string SecondsToReadableTime(float seconds)
{
if (seconds <= 60.0f)
if (seconds < 60.0f)
{
return (int)seconds + " s";
}