Fixed a typo in r11505 messing up the 'npcmove' command (only 'x' coordinate was being set correctly)
git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11588 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
parent
acd2c914a5
commit
3aa603d420
@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
|
||||
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
|
||||
|
||||
2007/10/27
|
||||
* Fixed a typo in r11505 messing up the 'npcmove' command
|
||||
* Removed 'petid', a command from r284 to look up pet ids by name
|
||||
* Fixed TXT charserver doing periodic random-sized alloc (bugreport:312)
|
||||
* Set 'Create Converter's produce success rate to 100% (bugreport:302)
|
||||
|
@ -1985,7 +1985,7 @@ void npc_movenpc(struct npc_data* nd, int x, int y)
|
||||
if (m < 0 || nd->bl.prev == NULL) return; //Not on a map.
|
||||
|
||||
x = cap_value(x, 0, map[m].xs-1);
|
||||
x = cap_value(y, 0, map[m].ys-1);
|
||||
y = cap_value(y, 0, map[m].ys-1);
|
||||
|
||||
npc_unsetcells(nd);
|
||||
map_foreachinrange(clif_outsight, &nd->bl, AREA_SIZE, BL_PC, &nd->bl);
|
||||
|
Loading…
x
Reference in New Issue
Block a user