From: Mario Date: Tue, 18 Aug 2015 23:51:48 +0000 (+1000) Subject: This is not a commit X-Git-Tag: xonotic-v0.8.2~2064^2~1 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;h=afc9bb4ccb492be6e06666efb664eae748e0bd30;p=xonotic%2Fxonotic-data.pk3dir.git This is not a commit --- diff --git a/qcsrc/server/miscfunctions.qh b/qcsrc/server/miscfunctions.qh index c30068722..a3c0d78d3 100644 --- a/qcsrc/server/miscfunctions.qh +++ b/qcsrc/server/miscfunctions.qh @@ -162,13 +162,6 @@ const string STR_OBSERVER = "observer"; #define IS_VEHICLE(v) (v.vehicle_flags & VHF_ISVEHICLE) #define IS_TURRET(v) (v.turrcaps_flags & TFL_TURRCAPS_ISTURRET) -#define IS_MACRO(v) \ - #ifdef v \ - true \ - #else \ - false \ - #endif - #define FOR_EACH_CLIENTSLOT(v) for(v = world; (v = nextent(v)) && (num_for_edict(v) <= maxclients); ) #define FOR_EACH_CLIENT(v) FOR_EACH_CLIENTSLOT(v) if(IS_CLIENT(v)) #define FOR_EACH_REALCLIENT(v) FOR_EACH_CLIENT(v) if(IS_REAL_CLIENT(v))