diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-24 01:16:33 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-24 01:16:33 +0000 |
commit | 9694f77616b2f127bcde59d49cc7e3cad832d0b3 (patch) | |
tree | fad4e5b61e2492cd5988c79d686f9812812d600a /src/map/vending.c | |
parent | c2697bf53b8f72db25c8a7aa03c2297b17cf7bc5 (diff) | |
download | hercules-9694f77616b2f127bcde59d49cc7e3cad832d0b3.tar.gz hercules-9694f77616b2f127bcde59d49cc7e3cad832d0b3.tar.bz2 hercules-9694f77616b2f127bcde59d49cc7e3cad832d0b3.tar.xz hercules-9694f77616b2f127bcde59d49cc7e3cad832d0b3.zip |
- Player-summoned mobs won't level up now.
- Fixed Super Novice explosion spirits triggering no matter what you said on the third line. It now triggers on the fourth line....
- Fixed GTB blocking targetted spells when gtb_pvp_only was set.
- Merged the code of Ankle snare and Spider web. It no longer moves target if sc failed.
- Players should stop walking as soon as they start vending or get into a chat.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5382 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/vending.c')
-rw-r--r-- | src/map/vending.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/vending.c b/src/map/vending.c index c2f0e2f5e..775fe756e 100644 --- a/src/map/vending.c +++ b/src/map/vending.c @@ -256,6 +256,7 @@ void vending_openvending(struct map_session_data *sd,int len,char *message,int f sd->vend_num = i;
memcpy(sd->message,message, MESSAGE_SIZE-1);
if (clif_openvending(sd,sd->vender_id,sd->vending) > 0){
+ pc_stop_walking(sd,1);
clif_showvendingboard(&sd->bl,message,0);
if(use_irc && irc_announce_shop_flag)
irc_announce_shop(sd,1);
|