Rebranding #80

Merged
OpzekerIT merged 66 commits from dev into main 2023-11-03 22:05:01 +00:00
Showing only changes of commit 5497bf983b - Show all commits

View file

@ -46,7 +46,6 @@ $lastMatches = array_slice($allMatches, 0, 8);
<th>Map</th> <th>Map</th>
<th>Kills</th> <th>Kills</th>
<th>Damage</th> <th>Damage</th>
<th>Time Survived</th>
<th>Place</th> <th>Place</th>
</tr> </tr>
</thead> </thead>
@ -76,7 +75,6 @@ $lastMatches = array_slice($allMatches, 0, 8);
<td><?php echo isset($mapNames[$match['mapName']]) ? $mapNames[$match['mapName']] : $match['mapName']; ?></td> <td><?php echo isset($mapNames[$match['mapName']]) ? $mapNames[$match['mapName']] : $match['mapName']; ?></td>
<td><?php echo $match['stats']['kills']; ?></td> <td><?php echo $match['stats']['kills']; ?></td>
<td><?php echo number_format($match['stats']['damageDealt'], 0, '.', ''); ?></td> <td><?php echo number_format($match['stats']['damageDealt'], 0, '.', ''); ?></td>
<td><?php echo gmdate("H:i:s", $match['stats']['timeSurvived']); ?></td>
<td><?php echo $match['stats']['winPlace']; ?></td> <td><?php echo $match['stats']['winPlace']; ?></td>
</tr> </tr>
<?php <?php