Skip to content

Commit

Permalink
update spell on existing Hieroglyph of Healing Mastery items (#4038)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmriggs authored Sep 8, 2023
1 parent 8fd2bf7 commit dab61fe
Showing 1 changed file with 15 additions and 0 deletions.
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;

0 comments on commit dab61fe

Please sign in to comment.