Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2016-07-14 | Changed chat_data::minLvl and chat_data::maxLvl to int and renamed to ↵ | Haru | 3 | -14/+14 | |
min_level and max_level Fixes several -Wsign-compare issues Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-14 | Changed map_session_data::change_level_2nd and ↵ | Haru | 3 | -27/+25 | |
map_session_data::change_level_3rd to int Fixes several -Wsign-compare issues Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-14 | Changed mmo_charstatus::base_level and mmo_charstatus::job_level to int | Haru | 10 | -59/+57 | |
Fixes several -Wsign-compare issues Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-14 | Changed various functions to take a const sd | Haru | 2 | -11/+11 | |
- Affected functions: pc->nextbaseex(), pc->nextjobexp(), pc->thisbaseexp(), pc->thisjobexp(), pc->readparam() - Fixes an accidental '+=' in pc->readparam() due to copy-paste failure, detected thanks to the const enforcement (luckily it had no current ill effects, since the value was 0) Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-14 | Changed pc->maxbaselv() and pc->maxjoblv() to return signed int and take ↵ | Haru | 3 | -18/+19 | |
const sd Removes some FIXME (and continues a chain reaction) Fixes some of the many -Wsign-compare warnings Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-14 | Fixed Coverity CID 150315: Integer overflowed argument | Haru | 2 | -14/+14 | |
Fixes a possible unsigned underflow (and changes the type of some unnecessarily unsigned variables to signed, such as pc->max_level[][]) Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-14 | Fixed Coverity CID 150316: Copy into fixed size buffer | Haru | 1 | -7/+5 | |
Fixes a buffer overflow Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-13 | HPM Hooks Update | Hercules.ws | 4 | -19/+19 | |
Signed-off-by: HerculesWSAPI <dev@herc.ws> | |||||
2016-07-14 | Simplify clif_skillcasting and rename to clif_useskill. | Andrei Karas | 3 | -5/+6 | |
2016-07-13 | Add missing includes into HPM. | Andrei Karas | 3 | -0/+10 | |
2016-07-12 | HPM Hooks Update | Hercules.ws | 4 | -0/+201 | |
Signed-off-by: HerculesWSAPI <dev@herc.ws> | |||||
2016-07-12 | Extract some code from battle_calc_damage into battle_calc_pc_damage. | Andrei Karas | 2 | -24/+36 | |
2016-07-12 | Add into skill.c some handling for unknown skills/skill units. | Andrei Karas | 4 | -76/+66 | |
Also improve a bit cast end functions call. | |||||
2016-07-12 | HPM Hooks Update | Haru | 7 | -0/+253 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Various changes to the grfio interface | Haru | 3 | -189/+332 | |
Mostly stylistic changes. Cleaned up documentation. Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Dropped unnecessary typedefs from grfio | Haru | 1 | -24/+26 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Interface grfio.c | hemagx | 7 | -30/+57 | |
2016-07-12 | HPM Hooks Update | Haru | 15 | -1/+1089 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Various changes to the thread interface | Haru | 3 | -117/+136 | |
Mostly stylistic changes. Cleaned up documentation. Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Removed unnecessary typedefs from thread and spinlock | Haru | 6 | -78/+91 | |
- SPIN_LOCK -> struct spin_lock - rAthread -> struct thread_handle - rAthreadProc -> threadFunc - RATHREAD_PRIO -> enum thread_priority - RAT_PRIO_LOW -> THREADPRIO_LOW - RAT_PRIO_NORMAL -> THREADPRIO_NORMAL - RAT_PRIO_HIGH -> THREADPRIO_HIGH - RA_THREADS_MAX -> THREADS_MAX Signed-off-by: Haru <haru@dotalux.com> fixupthread | |||||
2016-07-12 | Corrected some compiler warnings in test_spinlock | Haru | 1 | -1/+1 | |
2016-07-12 | Interface thread.c | hemagx | 7 | -141/+176 | |
2016-07-12 | HPM Hooks Update | Haru | 15 | -0/+800 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Various changes to the random interface | Haru | 2 | -26/+76 | |
Mostly stylistic changes. Cleaned up documentation. Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Interface random.c | hemagx | 7 | -48/+82 | |
2016-07-12 | HPM Hooks Update | Haru | 15 | -0/+984 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Various changes to the mutex interface | Haru | 2 | -51/+70 | |
Mostly stylistic changes. Cleaned up documentation. Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Removed unnecessary typedefs from mutex.h | Haru | 3 | -57/+56 | |
- ramutex -> struct mutex_data - racond -> struct cond_data Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Interface mutex.c | hemagx | 5 | -85/+115 | |
2016-07-12 | HPM Hooks Update | Haru | 15 | -0/+310 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Various changes to the md5 interface | Haru | 2 | -69/+104 | |
Mostly stylistic changes. Cleaned up documentation. Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Interface md5calc.c | hemagx | 7 | -26/+42 | |
2016-07-12 | HPM Hooks Update | Haru | 15 | -1/+212 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Various changes to the des interface | Haru | 3 | -82/+108 | |
Mostly stylistic changes. Cleaned up documentation. Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Removed unnecessary typedefs from des.h | Haru | 3 | -25/+31 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-12 | Interface des.c | hemagx | 5 | -11/+30 | |
2016-07-11 | Merge pull request #1352 from 4144/skilldbfix | Haru | 2 | -27/+35 | |
Some skilldb fixed after conversion | |||||
2016-07-12 | Fix reading skill_db.conf | Andrei Karas | 2 | -27/+35 | |
2016-07-10 | Fixed some issues with NULL dates in the login table | Haru | 2 | -7/+19 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-10 | HPM Hooks Update | Hercules.ws | 4 | -0/+34 | |
Signed-off-by: HerculesWSAPI <dev@herc.ws> | |||||
2016-07-10 | HULD generator: Show the amount of strings parsed | Haru | 1 | -1/+5 | |
Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-10 | HULD generator: added .pot file header | Haru | 1 | -2/+19 | |
- For compliance with gettext's specifications (and compatibility with online translation management services Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-10 | HULD: Improved .po file parser to properly read concatenated strings | Haru | 2 | -57/+142 | |
- For compliance with gettext's .po file specifications Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-10 | HPM Hooks Update | Hercules.ws | 4 | -0/+33 | |
Signed-off-by: HerculesWSAPI <dev@herc.ws> | |||||
2016-07-10 | Merge pull request #1350 from 4144/scconf | Haru | 4 | -50/+17 | |
Extend with new flag sc_config.txt | |||||
2016-07-10 | Fixed SC_OFFERTORIUM and SC_MAGNIFICAT | Ridley | 1 | -5/+9 | |
They should cancel each other, not prevent the usage (like Kyrie and Assumptio) Closes #1222 as merged Signed-off-by: Haru <haru@dotalux.com> | |||||
2016-07-10 | Use different interface members for start sc effects and show started effect ↵ | Andrei Karas | 2 | -2/+4 | |
to other. Added interface member clif->sc_continue for already started effects. | |||||
2016-07-10 | Add sc_config.txt flag for always visible effects. | Andrei Karas | 2 | -48/+13 | |
Remove hardcoded visible effects from status.c and add visible flag into sc_config.txt | |||||
2016-07-09 | HPM Hooks Update | Hercules.ws | 2 | -112/+112 | |
Signed-off-by: HerculesWSAPI <dev@herc.ws> | |||||
2016-07-09 | Fixed some warnings while compiling HPMHooking | Haru | 1 | -14/+14 | |
Signed-off-by: Haru <haru@dotalux.com> |