diff options
-rw-r--r-- | npc/012-1/wateranimation.txt | 3 | ||||
-rw-r--r-- | sql-files/upgrades/2018-08-03--11-37.sql | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/npc/012-1/wateranimation.txt b/npc/012-1/wateranimation.txt index 19b13bbc4..0943d5942 100644 --- a/npc/012-1/wateranimation.txt +++ b/npc/012-1/wateranimation.txt @@ -10,6 +10,9 @@ 012-1,119,54,0 script #Hurn_WAM0 NPC_WATER_SPLASH,{ fishing; // begin or continue fishing + setarray .@rare_fish, + GrassCarp, + BottleOfWoodlandWater; close; OnInit: diff --git a/sql-files/upgrades/2018-08-03--11-37.sql b/sql-files/upgrades/2018-08-03--11-37.sql index e8908e899..1dde29fd6 100644 --- a/sql-files/upgrades/2018-08-03--11-37.sql +++ b/sql-files/upgrades/2018-08-03--11-37.sql @@ -18,7 +18,7 @@ -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. -ALTER TABLE `quest` MODIFY `count1` INT(11) UNSIGNED NOT NULL DEFAULT '0'; -ALTER TABLE `quest` MODIFY `count2` INT(11) UNSIGNED NOT NULL DEFAULT '0'; -ALTER TABLE `quest` MODIFY `count3` INT(11) UNSIGNED NOT NULL DEFAULT '0'; +ALTER TABLE `quest` CHANGE `count1` `count1` INT(11) UNSIGNED NOT NULL DEFAULT '0'; +ALTER TABLE `quest` CHANGE `count2` `count2` INT(11) UNSIGNED NOT NULL DEFAULT '0'; +ALTER TABLE `quest` CHANGE `count3` `count3` INT(11) UNSIGNED NOT NULL DEFAULT '0'; INSERT INTO `sql_updates` (`timestamp`) VALUES (1533307076); |