diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-05 15:56:13 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-05 15:56:13 +0000 |
| commit | 6ed79c5de77b3f6be5c297cb5432d123ff1ff177 (patch) | |
| tree | a21336754348eb80263aa72768a474c500c8a607 /src/base/proto.c | |
| parent | 17b80069913989598a27fc31b952407f895f5b51 (diff) | |
- miny sa nezobrazuju na radare
- tux moze chodit strielat a zmenit zbran sucastne
- master server sa pouziga ten na "ms.tuxanci.org"
- AI sa nastavuje v GUI ako v TFG
git-svn-id: http://opensvn.csie.org/tuxanci_ng@93 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/base/proto.c')
| -rw-r--r-- | src/base/proto.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/base/proto.c b/src/base/proto.c index 9a5cc4b..cc33149 100644 --- a/src/base/proto.c +++ b/src/base/proto.c @@ -618,7 +618,10 @@ void proto_recv_additem_client(char *msg) return; } - addToRadar(id, x, y, RADAR_TYPE_ITEM); + if( type != ITEM_MINE && type != ITEM_EXPLOSION && type != ITEM_BIG_EXPLOSION ) + { + addToRadar(id, x, y, RADAR_TYPE_ITEM); + } item = newItem(x, y, type, author_id); |