diff options
author | AnnieRuru <jeankof@ymail.com> | 2015-12-16 13:16:41 +0800 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-05 15:34:45 +0100 |
commit | f836b4a752de8fd6702fab541a5be25fbd26c0e2 (patch) | |
tree | 29cd65058022f903bb45e265150dfdd6490caf77 /sql-files/upgrades | |
parent | 7d69fa553131b44752f6b7ea0087617f885b8b8a (diff) | |
download | hercules-f836b4a752de8fd6702fab541a5be25fbd26c0e2.tar.gz hercules-f836b4a752de8fd6702fab541a5be25fbd26c0e2.tar.bz2 hercules-f836b4a752de8fd6702fab541a5be25fbd26c0e2.tar.xz hercules-f836b4a752de8fd6702fab541a5be25fbd26c0e2.zip |
Fix battle config Hp/Sp overflow value
- client can't handle value over 21474836
- SQL also can't save value over 16777215 due to mediumint unsigned
Closes #965 as merged
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'sql-files/upgrades')
-rw-r--r-- | sql-files/upgrades/2015-12-16--12-57.sql | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sql-files/upgrades/2015-12-16--12-57.sql b/sql-files/upgrades/2015-12-16--12-57.sql new file mode 100644 index 000000000..cc9ce799e --- /dev/null +++ b/sql-files/upgrades/2015-12-16--12-57.sql @@ -0,0 +1,26 @@ +#1450241859 + +-- This file is part of Hercules. +-- http://herc.ws - http://github.com/HerculesWS/Hercules +-- +-- Copyright (C) 2015-2016 Hercules Dev Team +-- +-- Hercules is free software: you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation, either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- 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 `char` MODIFY COLUMN `max_hp` INT(9) NOT NULL DEFAULT '0'; +ALTER TABLE `char` MODIFY COLUMN `max_sp` INT(9) NOT NULL DEFAULT '0'; +ALTER TABLE `char` MODIFY COLUMN `hp` INT(9) NOT NULL DEFAULT '0'; +ALTER TABLE `char` MODIFY COLUMN `sp` INT(9) NOT NULL DEFAULT '0'; + +INSERT INTO `sql_updates` (`timestamp`) VALUES (1450241859); |