Skip to content

Commit

Permalink
Update script for stormwood daggers (content PR 1226) (#3759)
Browse files Browse the repository at this point in the history
  • Loading branch information
Boop-AC authored Dec 21, 2021
1 parent 1a20da1 commit a9418b2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Database/Updates/Shard/2021-12-19-00-Fix-Stormwood-Dagger.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/* PropertyInt.AttackType - 53323 Stormwood Dagger */

UPDATE biota_properties_int bint
INNER JOIN biota ON bint.object_Id=biota.Id
INNER JOIN ace_world.weenie_properties_int wint ON wint.object_Id=biota.weenie_Class_Id
SET bint.value=wint.value
WHERE biota.weenie_Class_Id=53323 and bint.`type`=47 and wint.`type`=47;


/* PropertyInt.AttackType - 72006 Stormwood Dagger */

UPDATE biota_properties_int bint
INNER JOIN biota ON bint.object_Id=biota.Id
INNER JOIN ace_world.weenie_properties_int wint ON wint.object_Id=biota.weenie_Class_Id
SET bint.value=wint.value
WHERE biota.weenie_Class_Id=72006 and bint.`type`=47 and wint.`type`=47;

0 comments on commit a9418b2

Please sign in to comment.