diff options
author | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-09 00:13:48 +0000 |
---|---|---|
committer | brianluau <brianluau@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-11-09 00:13:48 +0000 |
commit | 9c8991447ced838c88037dbbf76cf04a970e25dd (patch) | |
tree | 04461ed049a52f9704d8149697bc38b4dad63d92 | |
parent | 75a1caf2f0ad4d61feb2fa3791d700b58c3283b2 (diff) | |
download | hercules-9c8991447ced838c88037dbbf76cf04a970e25dd.tar.gz hercules-9c8991447ced838c88037dbbf76cf04a970e25dd.tar.bz2 hercules-9c8991447ced838c88037dbbf76cf04a970e25dd.tar.xz hercules-9c8991447ced838c88037dbbf76cf04a970e25dd.zip |
- Fixed extra curly brace in r16879... T_T
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16880 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | src/map/pc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index a3324fa71..ed5bf8aaa 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -4660,9 +4660,8 @@ int pc_setpos(struct map_session_data* sd, unsigned short mapindex, int x, int y sd->regen.state.gc = 0; // make sure vending is allowed here if (sd->state.vending && map[m].flag.novending) { - clif_displaymessage (sd->fd, msg_txt(276)); // "You can't open a shop on this map" - vending_closevending(sd); - } + clif_displaymessage (sd->fd, msg_txt(276)); // "You can't open a shop on this map" + vending_closevending(sd); } } |