-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update spell on existing Hieroglyph of Healing Mastery items (#4038)
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
Database/Updates/Shard/2023-09-02-00-Update-Spell-Hieroglyph-of-Healing-Mastery.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* PropertyDataId.Spell - 30141 Hieroglyph of Healing Mastery */ | ||
|
||
UPDATE biota_properties_d_i_d bd_i_d | ||
INNER JOIN biota ON bd_i_d.object_Id=biota.Id | ||
INNER JOIN ace_world.weenie_properties_d_i_d wd_i_d ON wd_i_d.object_Id=biota.weenie_Class_Id | ||
SET bd_i_d.value=wd_i_d.value | ||
WHERE biota.weenie_Class_Id=30141 and bd_i_d.`type`=28 and wd_i_d.`type`=28; | ||
|
||
/* PropertyString.LongDesc - 30141 Hieroglyph of Healing Mastery */ | ||
|
||
UPDATE biota_properties_string bstring | ||
INNER JOIN biota ON bstring.object_Id=biota.Id | ||
INNER JOIN ace_world.weenie_properties_string wstring ON wstring.object_Id=biota.weenie_Class_Id | ||
SET bstring.value=wstring.value | ||
WHERE biota.weenie_Class_Id=30141 and bstring.`type`=16 and wstring.`type`=16; |