Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-01-18 | Follow-up to 83077740c7c996d198617d45a1916cd31ff38e9a | Haru | 1 | -0/+3 | |
Fixed compile error in instance.c Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-18 | Fixed Bug Report 8438 | shennetsind | 2 | -1/+12 | |
Addresses instances crashing when running with the CELL_NOSTACK define enabled. Caused by the define not being readily available to all areas that played with mapcell (now with it being included from map.h this no longer is the case) http://hercules.ws/board/tracker/issue-8438-cell-nostack-and-instances-crash/ Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-18 | Follow up 348044f12d5f683c8945e0eac642f2795050fb4e | shennetsind | 1 | -1/+1 | |
Thanks to Haruna Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-18 | Implementing nullpo interface for plugin use | shennetsind | 4 | -3/+24 | |
As proposed in pull request #361 Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-18 | Connection History Redesign | shennetsind | 1 | -81/+56 | |
Drops ~250kb in memory usage from each server, speeds up lookup/insertion and the cleanup timer will iterate thru the list rather than that ~65k array loop Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-18 | Replacing rand leftovers with the mt19937ar | shennetsind | 7 | -14/+14 | |
Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-18 | Merge branch 'master' of github.com:HerculesWS/Hercules | shennetsind | 3 | -3/+4 | |
2015-01-18 | Fixing 38 issues | shennetsind | 20 | -85/+111 | |
Addressing out of bounds read/write, pointless null checks on already deferenced variables, dead code. Special Thanks to 4144 and Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | Merge pull request #444 from 4144/coverity | shennetsind | 3 | -3/+4 | |
some fixes for different issues | |||||
2015-01-18 | Fix out of bound issue in mapindex.c. | Andrei Karas | 1 | -1/+1 | |
Found by coverity scan. | |||||
2015-01-18 | Add some fixes to char server. | Andrei Karas | 2 | -2/+3 | |
Found by coverity scan. | |||||
2015-01-17 | 27 Fixes | shennetsind | 13 | -103/+108 | |
Addressing out of bounds read/write, pointless null checks on already deferenced variables. Special Thanks to 4144 and Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | Another ~10 Fixes | shennetsind | 9 | -10/+18 | |
Addressing out of bounds read/write. Special Thanks to 4144 and Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | Another ~10 Fixes | shennetsind | 7 | -33/+40 | |
Addressing out of bounds read/write, resource leaks. Special Thanks to 4144 and Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | Follow up 84b88781a0c39f7379ed85f74dc03c4e868a171f | shennetsind | 1 | -0/+1 | |
Thanks to Haruna Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | 10 Distinct fixes | shennetsind | 11 | -37/+39 | |
Addressing out of bounds read-write. Special Thanks to 4144, Haruna! Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | Stat server submission logic update | shennetsind | 1 | -1/+12 | |
to ensure report is submit in full. Signed-off-by: shennetsind <ind@henn.et> | |||||
2015-01-17 | Fixed Bug#8497 | malufett | 2 | -30/+49 | |
-http://hercules.ws/board/tracker/issue-8497-all-mercenaries-miss-hit-for-0/?gopid=24434#entry24434 Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com> | |||||
2015-01-15 | Merge branch 'master' of https://github.com/HerculesWS/Hercules | Dastgir | 95 | -107/+271 | |
2015-01-15 | Changed Zeny Limit in Bank to 2,147,483,647 | Dastgir | 1 | -1/+1 | |
2015-01-12 | Fix some compilation warnings with clang 3.6. | Andrei Karas | 2 | -2/+2 | |
2015-01-12 | Update HPM hooks. | Andrei Karas | 1 | -6/+6 | |
2015-01-12 | Fix uninitialized warning in skill.c. | Andrei Karas | 2 | -3/+3 | |
2015-01-12 | Fixed some -Wformat-security warnings | Haru | 6 | -20/+16 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Silenced some -Wunused-value warnings in sigemptyset and sigaddset calls | Haru | 1 | -7/+8 | |
- Fixes warnings when gcc-4.9 is used, with headers (such as Apple's) that define those symbols as `#define sigemptyset(set) (*(set) = 0, 0)` - See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61081 Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Removed unused (re)definition of NBBY from cbasetypes.h | Haru | 1 | -6/+0 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | HPM Hooks Update | Hercules.ws | 1 | -4/+4 | |
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome> | |||||
2015-01-12 | fix skills issue introduced in commit 5cdb3d12c4236e0c3a682e30fed96192d2c58188. | Andrei Karas | 2 | -3/+3 | |
2015-01-12 | Blocked compilation of plugins that use unavailable functions | Haru | 82 | -53/+223 | |
- Rather than failing at runtime, plugins that try to access non-interfaced, unavailable functions or variables, will now show an error at compile-time. Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Added detailed error message when a plugin fails to load | Haru | 2 | -2/+5 | |
- This helps figuring out why a plugin can't be loaded (especially on linux systems.) - Special thanks to Dastgir. Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Fixed an uninitialized variable in skill.c | Haru | 1 | -1/+1 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2015-01-12 | Fixed Bug where skill timer is not properly terminated/clear when the caster ↵ | malufett | 5 | -25/+26 | |
dies. -Thanks to GM Nihad. Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com> | |||||
2015-01-11 | Merge pull request #438 from 4144/pcdb_checkid | Haruna | 10 | -41/+77 | |
Convert pcdb_checkid into function in pc interface | |||||
2015-01-11 | Fixed direction problem with self targeted skills. Thanks to Haruna | csnv | 1 | -1/+2 | |
2015-01-11 | Update HPM hooks. | Andrei Karas | 3 | -0/+32 | |
2015-01-11 | Convert pcdb_checkid into function in pc interface. | Andrei Karas | 7 | -41/+45 | |
2015-01-11 | HPM Hooks Update | Hercules.ws | 3 | -1/+1133 | |
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome> | |||||
2015-01-11 | Merge pull request #435 from 4144/skillext | Haruna | 4 | -42/+371 | |
Extend skills for using custom skills from plugins. | |||||
2015-01-11 | Merge pull request #434 from csnv/minfixes | Haruna | 2 | -4/+15 | |
INF2_NOLP update. BL direction fixes. Combo minimum time increased. | |||||
2015-01-11 | Corrected comments and INF2_NOLP | csnv | 1 | -2/+4 | |
2015-01-10 | Extend battle.c for using custom skills from plugins. | Andrei Karas | 2 | -0/+34 | |
2015-01-10 | Extend skills.c for using custom skills from plugins. | Andrei Karas | 2 | -42/+337 | |
2015-01-10 | HPM Hooks Update | Hercules.ws | 1 | -19073/+19073 | |
Signed-off-by: HerculesWSAPI <Hercules@efficiently.awesome> | |||||
2015-01-10 | Add new eclage skills used in items | Michieru | 2 | -19032/+19074 | |
Update item_db to episode 14.2 Update eclage mobs spawn to official Update eclage mobs to official | |||||
2015-01-08 | Removed Duplicate Entry for client 2014-10-22 on packets.h | dastgirpojee | 1 | -37/+0 | |
2015-01-07 | Fixed char-server crash for clients >= 20141022, Thanks to Yommy and Ind | dastgirpojee | 1 | -5/+4 | |
2015-01-06 | Fixed LK_SPIRALPIERCE & NJ_TATAMIGAESHI change in damage output. Thanks to Michi | malufett | 1 | -11/+12 | |
Signed-off-by: malufett <malufett.eat.my.binaries@gmail.com> | |||||
2015-01-05 | Merge pull request #436 from 4144/mysqlleak | Haruna | 1 | -0/+1 | |
Fix memory leak after closing mysql connection. | |||||
2015-01-05 | Fix memory leak after closing mysql connection. | Andrei Karas | 1 | -0/+1 | |
2015-01-03 | Increased minimum combo time to that of amotion. | csnv | 1 | -1/+1 | |