diff options
author | shennetsind <ind@henn.et> | 2013-11-02 17:16:07 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-11-02 17:16:07 -0200 |
commit | 5c94e76753c0cdb4ffb7dabbd6e135f1f7d42ef2 (patch) | |
tree | ff526bcecccb920da12eff6bddac1d1a69a0a8bf | |
parent | cf1ed8794ad2cfe66ec111484fc5d17f7c09ac22 (diff) | |
download | hercules-5c94e76753c0cdb4ffb7dabbd6e135f1f7d42ef2.tar.gz hercules-5c94e76753c0cdb4ffb7dabbd6e135f1f7d42ef2.tar.bz2 hercules-5c94e76753c0cdb4ffb7dabbd6e135f1f7d42ef2.tar.xz hercules-5c94e76753c0cdb4ffb7dabbd6e135f1f7d42ef2.zip |
Updated to latest Hercules
Signed-off-by: shennetsind <ind@henn.et>
-rw-r--r-- | sql-files/main.sql | 4 | ||||
-rw-r--r-- | sql-files/upgrades/index.txt | 1 | ||||
-rw-r--r-- | src/common/mmo.h | 3 |
3 files changed, 8 insertions, 0 deletions
diff --git a/sql-files/main.sql b/sql-files/main.sql index 2c91d58b1..f8a225ee9 100644 --- a/sql-files/main.sql +++ b/sql-files/main.sql @@ -661,6 +661,7 @@ INSERT INTO `sql_updates` (`timestamp`) VALUES (1366078541); INSERT INTO `sql_updates` (`timestamp`) VALUES (1381354728); INSERT INTO `sql_updates` (`timestamp`) VALUES (1381423003); INSERT INTO `sql_updates` (`timestamp`) VALUES (1382892428); +INSERT INTO `sql_updates` (`timestamp`) VALUES (1383162785); INSERT INTO `sql_updates` (`timestamp`) VALUES (1383167577); -- @@ -715,6 +716,9 @@ INSERT INTO `interreg` (`varname`, `value`) VALUES CREATE TABLE IF NOT EXISTS `account_data` ( `account_id` int(11) unsigned NOT NULL default '0', `bank_vault` int(11) unsigned NOT NULL default '0', + `base_exp` TINYINT( 4 ) UNSIGNED NOT NULL default '0', + `base_drop` TINYINT( 4 ) UNSIGNED NOT NULL default '0', + `base_death` TINYINT( 4 ) UNSIGNED NOT NULL default '0', PRIMARY KEY (`account_id`) ) ENGINE=MyISAM; diff --git a/sql-files/upgrades/index.txt b/sql-files/upgrades/index.txt index ca06e9c31..1fc0ebd77 100644 --- a/sql-files/upgrades/index.txt +++ b/sql-files/upgrades/index.txt @@ -7,4 +7,5 @@ 2013-10-09--21-38.sql 2013-10-10--16-36.sql 2013-10-27--16-47.sql +2013-10-30--19-53.sql 2013-10-30--21-12.sql
\ No newline at end of file diff --git a/src/common/mmo.h b/src/common/mmo.h index 5f75f35da..603ec7573 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -415,6 +415,9 @@ struct mmo_charstatus { time_t delete_date; + /* `account_data` modifiers */ + unsigned short mod_exp,mod_drop,mod_death; + unsigned char font; }; |