diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-04 16:11:03 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-06-04 16:11:03 +0000 |
commit | 5c2e44cd3d10eb4b979d048d80914107485b6004 (patch) | |
tree | a156c1ad7d5edec6e5e8b0f4b1d892116887a809 /src/map/clif.c | |
parent | 8fea4f165cd27795ed134d3827da605d2536091e (diff) | |
download | hercules-5c2e44cd3d10eb4b979d048d80914107485b6004.tar.gz hercules-5c2e44cd3d10eb4b979d048d80914107485b6004.tar.bz2 hercules-5c2e44cd3d10eb4b979d048d80914107485b6004.tar.xz hercules-5c2e44cd3d10eb4b979d048d80914107485b6004.zip |
Follow up r16227 & bugreport:5932 fixed issues with my new-IDE tabbing, & default configuration setting.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16230 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 87263e72e..3ae2be6d5 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -11735,13 +11735,13 @@ void clif_parse_OpenVending(int fd, struct map_session_data* sd) return; } - if( vending_checknearnpc(&sd->bl) ) { - char output[50]; - sprintf(output,"You're too close to a NPC, you must be at least %d cells away from any NPC.",battle_config.min_npc_vending_distance); - clif_displaymessage(sd->fd, output); - clif_skill_fail(sd, MC_VENDING, USESKILL_FAIL_LEVEL, 0); - return; - } + if( vending_checknearnpc(&sd->bl) ) { + char output[50]; + sprintf(output,"You're too close to a NPC, you must be at least %d cells away from any NPC.",battle_config.min_npc_vending_distance); + clif_displaymessage(sd->fd, output); + clif_skill_fail(sd, MC_VENDING, USESKILL_FAIL_LEVEL, 0); + return; + } if( message[0] == '\0' ) // invalid input return; |