From e79d50fa2d7ad1af9c6d057583c38a282bd54f3c Mon Sep 17 00:00:00 2001 From: click Date: Fri, 16 Apr 2010 02:14:21 +0200 Subject: Reapply the previous "actionbars"-fix/handling db/coreside Fixes issue #1669 Note: This issue has been a pain in the rear, as it was actually messing up clients that ran a vanilla client without addons. The issue only comes in to place when players load a SINGLE actionbar, and not selecting "activate all bars". Extensive testing and debugging done to figure out why this actually happened - I'll fricking shoot the next one messing with it! --HG-- branch : trunk --- sql/characters.sql | 1 + sql/updates/7901_characters_characters.sql | 1 - sql/updates/7923_characters_characters.sql | 2 ++ 3 files changed, 3 insertions(+), 1 deletion(-) delete mode 100644 sql/updates/7901_characters_characters.sql create mode 100644 sql/updates/7923_characters_characters.sql (limited to 'sql') diff --git a/sql/characters.sql b/sql/characters.sql index 16312e478b1..d07f43cf3a0 100644 --- a/sql/characters.sql +++ b/sql/characters.sql @@ -391,6 +391,7 @@ CREATE TABLE `characters` ( `equipmentCache` longtext, `ammoId` int(10) UNSIGNED NOT NULL default '0', `knownTitles` longtext, + `actionBars` tinyint(3) UNSIGNED NOT NULL default '0', PRIMARY KEY (`guid`), KEY `idx_account` (`account`), KEY `idx_online` (`online`), diff --git a/sql/updates/7901_characters_characters.sql b/sql/updates/7901_characters_characters.sql deleted file mode 100644 index 381cd0399da..00000000000 --- a/sql/updates/7901_characters_characters.sql +++ /dev/null @@ -1 +0,0 @@ -ALTER TABLE `characters` DROP `actionBars`; diff --git a/sql/updates/7923_characters_characters.sql b/sql/updates/7923_characters_characters.sql new file mode 100644 index 00000000000..a9fe4880731 --- /dev/null +++ b/sql/updates/7923_characters_characters.sql @@ -0,0 +1,2 @@ +ALTER TABLE characters + ADD COLUMN `actionBars` tinyint(3) UNSIGNED NOT NULL default '0' AFTER knownTitles; -- cgit v1.2.3