summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-13 00:45:55 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-04-13 00:45:55 +0000
commit3cf706a09c00cf3ceee18a1a26446e3edafdbbec (patch)
treed6238ce920f94a6fb31d94da69e2cb4094478e3b /src/map/mob.c
parentca5e45d061b2d70499651d437a2d7f97f0ebbb67 (diff)
downloadhercules-3cf706a09c00cf3ceee18a1a26446e3edafdbbec.tar.gz
hercules-3cf706a09c00cf3ceee18a1a26446e3edafdbbec.tar.bz2
hercules-3cf706a09c00cf3ceee18a1a26446e3edafdbbec.tar.xz
hercules-3cf706a09c00cf3ceee18a1a26446e3edafdbbec.zip
- Changed slave chasing from using unit_walktobl to map_search_freecell + unit_walktoxy, since the previous behaviour makes all slaves always end up on the same cell.
- Changed some function declarations to take x,y arguments as short rather than int. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6024 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index f7e007bdd..8e28ff6bf 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -256,7 +256,7 @@ int mob_get_random_id(int type, int flag, int lv) {
*------------------------------------------
*/
int mob_once_spawn (struct map_session_data *sd, char *mapname,
- int x, int y, const char *mobname, int class_, int amount, const char *event)
+ short x, short y, const char *mobname, int class_, int amount, const char *event)
{
struct mob_data *md = NULL;
struct spawn_data data;
@@ -633,7 +633,7 @@ int mob_spawn (struct mob_data *md)
if ((md->spawn->x == 0 && md->spawn->y == 0) || md->spawn->xs || md->spawn->ys)
{ //Monster can be spawned on an area.
- int x, y, xs, ys;
+ short x, y, xs, ys;
if (md->spawn->x == 0 && md->spawn->y == 0)
xs = ys = -1;
else {
@@ -917,9 +917,11 @@ static int mob_ai_sub_hard_slavemob(struct mob_data *md,unsigned int tick)
(md->master_dist>MOB_SLAVEDISTANCE || md->master_dist == 0) &&
unit_can_move(&md->bl))
{
+ short x = bl->x, y = bl->y;
mob_stop_attack(md);
- unit_walktobl(&md->bl, bl, MOB_SLAVEDISTANCE, 0);
- }
+ if (map_search_freecell(&md->bl, bl->m, &x, &y, MOB_SLAVEDISTANCE, MOB_SLAVEDISTANCE, 1))
+ unit_walktoxy(&md->bl, x, y, 0);
+ }
} else if (bl->m != md->bl.m && map_flag_gvg(md->bl.m)) {
//Delete the summoned mob if it's in a gvg ground and the master is elsewhere. [Skotlex]
if(md->special_state.ai>0)
@@ -2305,7 +2307,7 @@ int mob_warpslave_sub(struct block_list *bl,va_list ap)
{
struct mob_data *md=(struct mob_data *)bl;
struct block_list *master;
- int x,y,range=0;
+ short x,y,range=0;
master = va_arg(ap, struct block_list*);
range = va_arg(ap, int);
@@ -2388,7 +2390,7 @@ int mob_summonslave(struct mob_data *md2,int *value,int amount,int skill_id)
amount+=k; //Increase final value by same amount to preserve total number to summon.
}
for(;k<amount;k++) {
- int x,y;
+ short x,y;
data.class_ = value[k%count]; //Summon slaves in round-robin fashion. [Skotlex]
if (mobdb_checkid(data.class_) == 0)
continue;
@@ -2667,7 +2669,7 @@ int mobskill_use(struct mob_data *md, unsigned int tick, int event)
{
// ꏊw
struct block_list *bl = NULL;
- int x = 0, y = 0;
+ short x = 0, y = 0;
if (ms[i].target <= MST_AROUND) {
switch (ms[i].target) {
case MST_TARGET: