forked from azerothcore/azerothcore-wotlk
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add small infrastructure for spec spells at lvl 10; add error catch a…
…nd log; update message for level 10 spec
- Loading branch information
Showing
5 changed files
with
82 additions
and
35 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
modules/mod-Forge/sql/world/updates/20231101 talent spec select.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,8 @@ | ||
DROP TABLE IF EXISTS `acore_world`.`forge_character_spec_spells`; | ||
CREATE TABLE `acore_world`.`forge_character_spec_spells` ( | ||
`classId` INT(10) UNSIGNED NOT NULL, | ||
`tabId` INT(10) UNSIGNED NOT NULL, | ||
`level` INT(10) UNSIGNED NOT NULL, | ||
`spell` INT(10) UNSIGNED NOT NULL, | ||
PRIMARY KEY (`tabId`, `level`) | ||
) COLLATE='utf8_general_ci' ENGINE=InnoDB; |
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
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