mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
6d494bfcdf
-Wall still isn't used yet due to a missing method in Array, and overzealous warnings in qfcc, but this covers the necessary fixes.
9 lines
239 B
R
9 lines
239 B
R
#include "qw_message.h"
|
|
#include "tempent.h"
|
|
|
|
void(vector org, float damage) SpawnBlood =
|
|
{
|
|
WriteBytes (MSG_MULTICAST, (float) SVC_TEMPENTITY, (float) TE_BLOOD, 1.0);
|
|
WriteCoordV (MSG_MULTICAST, org);
|
|
multicast (org, MULTICAST_PVS);
|
|
};
|