diff --git a/Admin/Templates/natarbuildingplan.tpl b/Admin/Templates/natarbuildingplan.tpl
index d9bdcea3..7f8ec013 100644
--- a/Admin/Templates/natarbuildingplan.tpl
+++ b/Admin/Templates/natarbuildingplan.tpl
@@ -37,7 +37,12 @@ if($_SESSION['access'] < ADMIN) die("Access Denied: You are not Admin!");
Create WW Buildingplan villages?
insert number of Villages and press 'enter'
-
+
+ |
+ |
+ |
+ |
+
Create World Wonder villages?
insert number of Wonders and press 'enter'
-
+
+ |
+ |
+ |
+ |
+
generateBase($kid);
$database->setFieldTaken($wid);
$time = time();
diff --git a/GameEngine/Admin/Mods/natarend.php b/GameEngine/Admin/Mods/natarend.php
index 94b350d4..d3df6d29 100644
--- a/GameEngine/Admin/Mods/natarend.php
+++ b/GameEngine/Admin/Mods/natarend.php
@@ -19,7 +19,7 @@ $amt = $_POST['vill_amount'];
for($i=1;$i<=$amt;$i++) {
- $kid = rand(1,4);
+ $kid = $_POST['kid'];
$wid = $database->generateBase($kid);
$database->setFieldTaken($wid);
diff --git a/install/data/sql.sql b/install/data/sql.sql
index c7a2985a..4a8740ce 100644
--- a/install/data/sql.sql
+++ b/install/data/sql.sql
@@ -181,8 +181,8 @@ CREATE TABLE IF NOT EXISTS `%PREFIX%artefacts` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`vref` int(11) unsigned NOT NULL,
`owner` int(11) unsigned NOT NULL,
- `type` int(3) unsigned NOT NULL,
- `size` int(11) unsigned NOT NULL,
+ `type` tinyint(2) unsigned NOT NULL,
+ `size` tinyint(1) unsigned NOT NULL,
`conquered` int(11) unsigned NOT NULL,
`name` varchar(100) NOT NULL,
`desc` text NOT NULL,