mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-07-04 11:54:25 +00:00
55e6dd60b5
1. Fix a bug in Admin Panel that you can edit by yourself your rank, now you cannot edit your rank anymore. 2. Now Alliance Leader can edit his own Position 3. Fix negative value on Demolition Building, now in database at lvl is appear new level not -1 4. Refactor Ajax map, now all is alligned (Ajax folder and Map folder) 5. Fix bug from Palace (when change capital now Automation recount population automaticaly on old capital and new capital)
34 lines
1.1 KiB
Smarty
34 lines
1.1 KiB
Smarty
<?php
|
|
|
|
// RALLY POINT TROOPS
|
|
|
|
$tribe = $session->tribe;
|
|
$start = ($tribe - 1) * 10 + 1;
|
|
$end = $tribe * 10;
|
|
$hasHero = $village->unitarray['hero'] != 0;
|
|
$colspan = $hasHero ? 11 : 10;
|
|
?>
|
|
<tr><th> </th>
|
|
<?php for ($i = $start; $i <= $end; $i++): ?>
|
|
<td><img src="img/x.gif" class="unit u<?= $i ?>" title="<?= $technology->getUnitName($i) ?>" alt="<?= $technology->getUnitName($i) ?>"></td>
|
|
<?php endfor; ?>
|
|
<?php if ($hasHero): ?>
|
|
<td><img src="img/x.gif" class="unit uhero" title="Hero" alt="Hero"></td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
<tr><th><?= TROOPS ?></th>
|
|
<?php for ($i = $start; $i <= $end; $i++):
|
|
$cnt = $village->unitarray['u'.$i] ?? 0;
|
|
?>
|
|
<td class="<?= $cnt == 0 ? 'none' : '' ?>"><?= $cnt ?></td>
|
|
<?php endfor; ?>
|
|
<?php if ($hasHero): ?>
|
|
<td><?= $village->unitarray['hero'] ?></td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
</tbody>
|
|
<tbody class="infos">
|
|
<tr>
|
|
<th><?= UPKEEP ?></th>
|
|
<td colspan="<?= $colspan ?>"><?= $technology->getUpkeep($village->unitarray, 0) ?><img class="r4" src="img/x.gif" title="Crop" alt="Crop"><?= PER_HR ?></td>
|
|
</tr> |