Issue information

Issue ID
#5150
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Dec 23, 2011 0:18
Last Post
Hercules Elf Bot
Apr 5, 2012 10:30
Confirmation
N/A

Hercules Elf Bot - Dec 23, 2011 0:18

Originally posted by [b]Toshiro[/b]
/trunk/src/map/[url="https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/script.c"]script.c:9815[/url][code] case MF_BATTLEGROUND: (!val || atoi(val) < 0 || atoi(val) > 2) ? 1 : atoi(val); break;[/code]should be (again)[code] case MF_BATTLEGROUND: map[m].flag.battleground = (!val || atoi(val) < 0 || atoi(val) > 2) ? 1 : atoi(val); break;[/code]
Currently only parses the input, but doesn't change the mapflag.
The bug exists since [url="http://sourceforge.net/apps/trac/rathena/changeset/15011"]r15011[/url], related to [bug='5097'].

Hercules Elf Bot - Dec 23, 2011 1:50

Originally posted by [b]Xantara[/b]
Thanks! Fixed in [rev=15219]

This post has been edited by Xantara on Dec 23, 2011 1:51