From 62739ed26feca76f1f8f475387586f16a082c12b Mon Sep 17 00:00:00 2001 From: Rat Date: Sat, 23 Oct 2010 23:31:37 +0200 Subject: Core/AI: implemented basic class for GameObjectAI --HG-- branch : trunk --- sql/base/world_database.sql | 1 + sql/updates/10281_world_gameobject_template.sql | 1 + 2 files changed, 2 insertions(+) create mode 100644 sql/updates/10281_world_gameobject_template.sql (limited to 'sql') diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index a15c71f8cef..828ef681506 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -2736,6 +2736,7 @@ CREATE TABLE `gameobject_template` ( `data21` int(10) unsigned NOT NULL DEFAULT '0', `data22` int(10) unsigned NOT NULL DEFAULT '0', `data23` int(10) unsigned NOT NULL DEFAULT '0', + `AIName` char(64) NOT NULL DEFAULT '', `ScriptName` varchar(64) NOT NULL DEFAULT '', `WDBVerified` smallint(5) signed DEFAULT '1', PRIMARY KEY (`entry`), diff --git a/sql/updates/10281_world_gameobject_template.sql b/sql/updates/10281_world_gameobject_template.sql new file mode 100644 index 00000000000..568b4c21f5e --- /dev/null +++ b/sql/updates/10281_world_gameobject_template.sql @@ -0,0 +1 @@ +ALTER TABLE `gameobject_template` ADD `AIName` CHAR( 64 ) NOT NULL DEFAULT '' AFTER `data23`; \ No newline at end of file -- cgit v1.2.3