summaryrefslogtreecommitdiff
path: root/src/item.c
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-06-19 19:28:04 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-06-19 19:28:04 +0000
commita370d2f5860a0f89ac44af857d1059885ad1d60f (patch)
tree5ad5112a884e41367b271a8ea3509dec04524819 /src/item.c
parentfadf9365dba24b680db5cb8750c53e264ff1ec27 (diff)
- upravy v kode
- prepis stirel pre space_t * - v kode su dva vyhladavacie algortmy, implicitne sa pouziva ten ktory funguje :) ten co nefunguje je zamakrovany makrom SUPPORT_ERROR a este ho musim doladit git-svn-id: http://opensvn.csie.org/tuxanci_ng@66 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/item.c')
-rw-r--r--src/item.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/item.c b/src/item.c
index 2ec126d..467117d 100644
--- a/src/item.c
+++ b/src/item.c
@@ -482,12 +482,12 @@ void eventConflictShotWithItem(arena_t *arena)
return;
}
- for( i = 0 ; i < arena->listShot->count ; i++ )
+ for( i = 0 ; i < arena->spaceShot->list->count ; i++ )
{
bool_t isDelShot;
isDelShot = FALSE;
- thisShot = (shot_t *)arena->listShot->list[i];
+ thisShot = (shot_t *)arena->spaceShot->list->list[i];
assert( thisShot != NULL );
listDoEmpty(listHelp);
@@ -526,7 +526,7 @@ void eventConflictShotWithItem(arena_t *arena)
proto_send_delshot_server(PROTO_SEND_ALL, NULL, thisShot);
}
- delListItem(arena->listShot, i, destroyShot);
+ delObjectFromSpaceWithObject(arena->spaceShot, thisItem, destroyShot);
i--;
}
}