diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-21 14:56:38 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2007-12-21 14:56:38 +0000 |
commit | 0c531de47eae77ab9fb2ec7a1fd6fc2be1462ef4 (patch) | |
tree | f85809e3a6a4771e2c157e1fb1577877741b81b5 /src/main.cpp | |
parent | 539af2ea0ce3245c41b4a4be989da35788f7b992 (diff) | |
download | mana-0c531de47eae77ab9fb2ec7a1fd6fc2be1462ef4.tar.gz mana-0c531de47eae77ab9fb2ec7a1fd6fc2be1462ef4.tar.bz2 mana-0c531de47eae77ab9fb2ec7a1fd6fc2be1462ef4.tar.xz mana-0c531de47eae77ab9fb2ec7a1fd6fc2be1462ef4.zip |
Fixed inventory size not matching the size assumed by eAthena and related
memory corruption and increased default chat log length.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 5a0e2ed9..51d51243 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -234,7 +234,7 @@ void init_engine(const Options &options) config.setValue("fpslimit", 60); config.setValue("updatehost", "http://updates.themanaworld.org"); config.setValue("customcursor", 1); - config.setValue("ChatLogLength", 64); + config.setValue("ChatLogLength", 128); // Checking if the configuration file exists... otherwise creates it with // default options ! |