From 48eb7286696318173b4d97a5d3dde65da17bf3ec Mon Sep 17 00:00:00 2001 From: Gergely POLONKAI Date: Thu, 17 May 2012 22:17:21 +0200 Subject: [PATCH] Fixed create-world.sh and drop-world.sh scripts to include menus, too Signed-off-by: Gergely POLONKAI --- create-world.sh.in | 2 ++ sql/drop-world.sql | 1 + 2 files changed, 3 insertions(+) diff --git a/create-world.sh.in b/create-world.sh.in index e556750..014437a 100644 --- a/create-world.sh.in +++ b/create-world.sh.in @@ -1,5 +1,7 @@ #! /bin/bash +sqlite3 "@localstatedir@"/iminiru.db < sql/menu.sql + sqlite3 "@localstatedir@"/iminiru.db < sql/planes.sql sqlite3 "@localstatedir@"/iminiru.db < sql/planets.sql sqlite3 "@localstatedir@"/iminiru.db < sql/rooms.sql diff --git a/sql/drop-world.sql b/sql/drop-world.sql index 8c6b45e..e7061a2 100644 --- a/sql/drop-world.sql +++ b/sql/drop-world.sql @@ -8,3 +8,4 @@ DROP TABLE room_exits; DROP TABLE rooms; DROP TABLE areas; DROP TABLE directions; +DROP TABLE menu;