238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
|
DynamicEntity *monster, size_t i, bool *stop) {
if (i != notthismonster)
radialeffect(monster, v, i, qdam, p.owner);
}];
}
}
inline void
projdamage(DynamicEntity *o, Projectile *p, const OFVector3D *v, int i, int im,
int qdam)
{
if (o.state != CS_ALIVE)
return;
OFVector3D po = p.o;
|
|
|
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
|
DynamicEntity *monster, size_t i, bool *stop) {
if (i != notthismonster)
radialeffect(monster, v, i, qdam, p.owner);
}];
}
}
static inline void
projdamage(DynamicEntity *o, Projectile *p, const OFVector3D *v, int i, int im,
int qdam)
{
if (o.state != CS_ALIVE)
return;
OFVector3D po = p.o;
|