This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #700 from ProjectSkyfire/dev_aridev
*Server/Player: Fixed saving blockpct into character_stats, also added mastery, pvpdamage and pvphealing. *Server/Scripts: Fixed an issue after using .reload quest_template that u were unable to earn credit to quests because quest objectives were not updated.
- Loading branch information
Showing
5 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
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
5 changes: 5 additions & 0 deletions
5
sql/updates/characters/2016_02_26_00_characters_character_stats.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,5 @@ | ||
ALTER TABLE `character_stats` | ||
ADD COLUMN `offhandCritPct` FLOAT UNSIGNED NOT NULL DEFAULT '0' AFTER `rangedCritPct`, | ||
ADD COLUMN `mastery` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `resilience`, | ||
ADD COLUMN `pvpDamage` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `mastery`, | ||
ADD COLUMN `pvpHealing` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `pvpDamage`; |
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
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
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