-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update script for stormwood daggers (content PR 1226) (#3759)
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
Database/Updates/Shard/2021-12-19-00-Fix-Stormwood-Dagger.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,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; |