diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-02 07:17:11 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-01-02 07:17:11 +0000 |
commit | 9f6cebfb2673a3da602cb5f1a86cff3751636a85 (patch) | |
tree | 921db354724283e87d3dab17e43386531605ded5 /src/map/clif.c | |
parent | 1ccf206a2f798da6df6b47c05b30bb0fa876e653 (diff) | |
download | hercules-9f6cebfb2673a3da602cb5f1a86cff3751636a85.tar.gz hercules-9f6cebfb2673a3da602cb5f1a86cff3751636a85.tar.bz2 hercules-9f6cebfb2673a3da602cb5f1a86cff3751636a85.tar.xz hercules-9f6cebfb2673a3da602cb5f1a86cff3751636a85.zip |
- Gospel sends the buff message to the affected player.
Reported by holybeske in http://www.eathena.ws/board/index.php?showtopic=130440
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9604 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 928855620..2370b0605 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -10093,11 +10093,6 @@ void clif_parse_NpcSelectMenu(int fd,struct map_session_data *sd) void clif_parse_NpcNextClicked(int fd,struct map_session_data *sd) { RFIFOHEAD(fd); -#ifdef __WIN32 - //For some extraordinarily eerie reason that noone has figured out yet, - //windows native compiles NEED this nullpo_retv or the function is not found! - nullpo_retv(sd); -#endif npc_scriptcont(sd,RFIFOL(fd,2)); } @@ -10108,11 +10103,7 @@ void clif_parse_NpcNextClicked(int fd,struct map_session_data *sd) void clif_parse_NpcAmountInput(int fd,struct map_session_data *sd) { RFIFOHEAD(fd); -#define RFIFOL_(fd,pos) (*(int*)(session[fd]->rdata+session[fd]->rdata_pos+(pos))) - //Input Value overflow Exploit FIX - sd->npc_amount=RFIFOL_(fd,6); //fixed by Lupus. npc_amount is (int) but was RFIFOL changing it to (unsigned int) -#undef RFIFOL_ - + sd->npc_amount=(int)RFIFOL(fd,6); npc_scriptcont(sd,RFIFOL(fd,2)); } |