diff options
author | Malcrom <malcromdev@gmail.com> | 2013-06-18 21:34:40 -0230 |
---|---|---|
committer | Malcrom <malcromdev@gmail.com> | 2013-06-18 21:34:40 -0230 |
commit | 2b45255aa8f4dbc208ee5bee4344cd3f1f662692 (patch) | |
tree | 51b83dd5eb0071a337e915fe5f1341027dd2b064 | |
parent | a50fef233652a91e2d8fb0574f39b6b2203fe4b3 (diff) |
DB/Scripting: Condition needed for spell Throw Ingredient
-rw-r--r-- | sql/updates/world/2013_06_18_06_world_conditions.sql | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/updates/world/2013_06_18_06_world_conditions.sql b/sql/updates/world/2013_06_18_06_world_conditions.sql new file mode 100644 index 00000000000..07bbf69bf39 --- /dev/null +++ b/sql/updates/world/2013_06_18_06_world_conditions.sql @@ -0,0 +1,4 @@ +-- Add spell target for Throw Ingredient +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=51025; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `ErrorTextId`, `Comment`) VALUES +(13,1,51025,0,31,3,28240,0,0, 'Throw Ingredient can be casted on Finklestein''s Cauldron Bunny'); |