mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Items: Fixed item level increases of gems with bonuses that give them scaling stat distribution
This commit is contained in:
10
sql/updates/characters/master/2016_12_09_00_characters.sql
Normal file
10
sql/updates/characters/master/2016_12_09_00_characters.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
ALTER TABLE `item_instance_gems`
|
||||
CHANGE `gemItemId1` `gemItemId1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
CHANGE `gemBonuses1` `gemBonuses1` text,
|
||||
ADD `gemScalingLevel1` int(10) unsigned NOT NULL DEFAULT '0' AFTER `gemContext1`,
|
||||
CHANGE `gemItemId2` `gemItemId2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
CHANGE `gemBonuses2` `gemBonuses2` text,
|
||||
ADD `gemScalingLevel2` int(10) unsigned NOT NULL DEFAULT '0' AFTER `gemBonuses2`,
|
||||
CHANGE `gemItemId3` `gemItemId3` int(10) unsigned NOT NULL DEFAULT 0,
|
||||
CHANGE `gemBonuses3` `gemBonuses3` text,
|
||||
ADD `gemScalingLevel3` int(10) unsigned NOT NULL DEFAULT '0' AFTER `gemContext3`;
|
||||
Reference in New Issue
Block a user