- Fixed @mapinfo displaying incorrectly maps with nosave which send you back to your last savepoint.
- Moved guild_exp_rate from a mapserver battle config setting to a char server config. It no longer modifies the total taxed exp as seen on the guild information window, but directly modifies the exp that the guild earns. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@7074 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
@@ -146,6 +146,7 @@ int save_log = 1;
|
||||
int start_zeny = 500;
|
||||
int start_weapon = 1201;
|
||||
int start_armor = 2301;
|
||||
int guild_exp_rate = 100;
|
||||
|
||||
//Custom limits for the fame lists. [Skotlex]
|
||||
int fame_list_size_chemist = MAX_FAME_LIST;
|
||||
@@ -4192,6 +4193,8 @@ int char_config_read(const char *cfgName) {
|
||||
ShowWarning("Max fame list size is %d (fame_list_taekwon)\n", MAX_FAME_LIST);
|
||||
fame_list_size_taekwon = MAX_FAME_LIST;
|
||||
}
|
||||
} else if (strcmpi(w1, "guild_exp_rate") == 0) {
|
||||
guild_exp_rate = atoi(w2);
|
||||
} else if (strcmpi(w1, "import") == 0) {
|
||||
char_config_read(w2);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user