Vanilla List Mailing List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [VANILLA-LIST:2493] Some things
On Wed, Jul 14, 1999 at 08:53:24PM -0400, Dave Ahn wrote:
> Here are a bunch of replies to several messages from Vanilla-list over the
> last few weeks:
>
> ----
> First, are we sure that Tom's (or whoever it was) patch to ntserv/detonate.c
> is needed? The dogfight robot already has its own custom detonate code in
> robots/detonate.c:
Detting is broken on a fresh 2.9pl2 install in dogfight mode.
> /* Teammates' torps are always friendly except in dogfight,
> when only own are */
> #ifdef DOGFIGHT
> if (j == me)
> continue;
> #else
> if (Teammates(j, me))
> continue;
> #endif
This just means that mars doesn't filter out the det itself; it still
calls the ntserv det code to calculate the det, and that's where it gets
chopped off.
-Tom