iopietro/Travianz-Legacy

Farm List error

heloirf opened this issue · 1 comments

Adding villas to a farm list is not added.

*** in farmlist_addraid.tpl
REMOVE LINE 46, 47, 48
$Wref = $database->getVilWref($_POST['x'], $_POST['y']);
$WrefX = $_POST['x'];
$WrefY = $_POST['y'];
ADD LINE 45
$Wref = $database->getVilWref($WrefX, $WrefY);

*** in trooplist.tpl
REMOVE LINE 21
if(in_array($i, [4, 14, 23])) continue;

ADD LINES 21...26

if(in_array($i, [4, 14, 23])) {
?>
<input type="hidden" name ="t" value="0"

It should be fixed in 3b167c6.
Remove your additions, try it and tell me if it's resolved (because I'm unable to test it right now).