Fixed Typo in serverinfo.php parsing

This commit is contained in:
Znote 2021-06-13 04:14:31 +02:00
parent 671aa9d057
commit 1de2c8c1d3

View File

@ -305,8 +305,8 @@ $stages = false;
</tr> </tr>
<?php if (isset($luaConfig['timeToDecreaseFrags'])): ?> <?php if (isset($luaConfig['timeToDecreaseFrags'])): ?>
<tr> <tr>
<td>Time to decrease frags</td> <td>Time to decrease frags</td><!-- Legacy servers might need to remove *1000 -->
<td><?php echo toDuration($luaConfig['timeToDecreaseFrags']); ?></td> <td><?php echo toDuration($luaConfig['timeToDecreaseFrags']*1000); ?></td>
</tr> </tr>
<?php endif; ?> <?php endif; ?>
<tr> <tr>
@ -359,7 +359,7 @@ $stages = false;
</tr> </tr>
<tr> <tr>
<td>One player online per account</td> <td>One player online per account</td>
<td><?php echo toYesNo($luaConfig['stairJumpExhaustion']); ?></td> <td><?php echo toYesNo($luaConfig['onePlayerOnlinePerAccount']); ?></td>
</tr> </tr>
<tr> <tr>
<td>Max players online server limit</td> <td>Max players online server limit</td>