Core/Fishing: implement retail-like fishing skill-up functionality (#17528)

Follow-up to  6f1e823.

Forgot to update base characters database. Sorry.
This commit is contained in:
SnapperRy
2016-09-13 04:16:05 +02:00
committed by joschiwald
parent 29ce69b3ad
commit cab4ce3a53
7 changed files with 90 additions and 14 deletions

View File

@@ -0,0 +1,6 @@
DROP TABLE IF EXISTS `character_fishingsteps`;
CREATE TABLE `character_fishingsteps` (
`guid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`fishingSteps` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`)
) ENGINE=INNODB DEFAULT CHARSET=utf8;