diff options
| author | Nay <dnpd.dd@gmail.com> | 2012-12-14 00:07:28 +0000 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2012-12-14 00:07:28 +0000 |
| commit | 294d7c0707abe428121c39a829dfffc0fe2fb432 (patch) | |
| tree | c623f5b5058ba4975d72193c16272aee684bb726 | |
| parent | 45052f1f637e165f8d158feeae32227442aa646f (diff) | |
DB/World: Fix a typo in file 2012_11_24_03_world_varius_fixes.sql
>ERROR 1264 (22003) at line 359: Out of range value for column 'ConditionTarget'
The above error is only present when using MySQL strict mode (and that is **recommended**)
To enable strict mode add `sql_mode=STRICT_ALL_TABLES` to my.init MySQL configuration file
| -rw-r--r-- | sql/updates/world/2012_11_24_03_world_various_fixes.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/updates/world/2012_11_24_03_world_various_fixes.sql b/sql/updates/world/2012_11_24_03_world_various_fixes.sql index 6a30c145165..bebecdfc0e4 100644 --- a/sql/updates/world/2012_11_24_03_world_various_fixes.sql +++ b/sql/updates/world/2012_11_24_03_world_various_fixes.sql @@ -358,7 +358,7 @@ INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`op DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9456; INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES (15,9456,0,0,0,9,0,12132,0,0,0,0,'','Koltira Deathweaver show gossip option if player has quest 12132'), -(15,9456,0,0,0,1,47740,0,0,1,0,0,'','Koltira Deathweaver show gossip option if player has not aura World of Shadows'); +(15,9456,0,0,0,1,0,7740 ,0,0,1,0,'','Koltira Deathweaver show gossip option if player has not aura World of Shadows'); DELETE FROM `smart_scripts` WHERE `entryorguid` IN (26581,27846) AND `source_type`=0; INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES (26581,0,1,0,62,0,100,0,9456,0,0,0,11,47740,0,0,0,0,0,7,0,0,0,0,0,0,0,'Koltira Deathweaver - On gossip option select - Spellcast World of Shadows'), |
