mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-17 00:31:02 +00:00
General fixes
+Fixed a bug that didn't permit to display the bonus of some buildings at level 0 +The cavalry training percentage bonus, provided by the horsedrinking trough, is now displayed correctly
This commit is contained in:
+23
-1
@@ -3,7 +3,29 @@
|
||||
</a>
|
||||
<h1><?php echo HORSEDRINKING; ?> <span class="level"><?php echo LEVEL; ?> <?php echo $village->resarray['f'.$id]; ?></span></h1>
|
||||
<p class="build_desc"><?php echo HORSEDRINKING_DESC; ?></p>
|
||||
|
||||
<table cellpadding="1" cellspacing="1" id="build_value">
|
||||
<tr>
|
||||
<th><?php echo CURRENT_BONUS; ?></th>
|
||||
<td><b><?php echo $village->resarray['f'.$id] > 0 ? $bid41[$village->resarray['f'.$id]]['attri'] * 100 - 100 : 0; ?></b> <?php echo PERCENT; ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?php
|
||||
if(!$building->isMax($village->resarray['f'.$id.'t'],$id)) {
|
||||
$next = $village->resarray['f'.$id] + 1 + $loopsame + $doublebuild + $master;
|
||||
if($next <= 20){
|
||||
?>
|
||||
<th><?php echo BONUS_LEVEL; ?> <?php echo $next; ?>:</th>
|
||||
<td><b><?php echo $bid41[$next]['attri'] * 100 - 100; ?></b> <?php echo PERCENT; ?></td>
|
||||
<?php
|
||||
}else{
|
||||
?>
|
||||
<th><?php echo BONUS_LEVEL; ?> 20:</th>
|
||||
<td><b><?php echo $bid41[20]['attri']; ?></b> <?php echo PERCENT; ?></td>
|
||||
<?php
|
||||
}}
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
<?php
|
||||
include("upgrade.tpl");
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user