Merge pull request #128 from denixue/patch-8

Update Templates/Build/11.tpl
This commit is contained in:
yi12345
2012-09-01 03:08:00 -07:00
+3 -3
View File
@@ -11,7 +11,7 @@ include("next.tpl");
<table cellpadding="1" cellspacing="1" id="build_value">
<tr>
<th>Current capacity:</th>
<td><b><?php echo $bid11[$village->resarray['f'.$id]]['attri']*STORAGE_MULTIPLIER; ?></b> units</td>
<td><b><?php echo $bid11[$village->resarray['f'.$id]]['attri']*STORAGE_MULTIPLIER; ?></b> Crop units</td>
</tr>
<tr>
@@ -21,12 +21,12 @@ include("next.tpl");
if($next<=20){
?>
<th>Capacity at level <?php echo $next ?>:</th>
<td><b><?php echo $bid11[$next]['attri']*STORAGE_MULTIPLIER; ?></b> units</td>
<td><b><?php echo $bid11[$next]['attri']*STORAGE_MULTIPLIER; ?></b> Crop units</td>
<?php
}else{
?>
<th>Capacity at level 20:</th>
<td><b><?php echo $bid11[20]['attri']*STORAGE_MULTIPLIER; ?></b> units</td>
<td><b><?php echo $bid11[20]['attri']*STORAGE_MULTIPLIER; ?></b> Crop units</td>
<?php
}
}