]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/w_nex.qc
give all weapon files a w_function
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / w_nex.qc
index 7a9103ccfabf2cd619919b4863fbfcdc9a1ccaa9..24c0af53749b301e482748b89bae76ba8f7af276 100644 (file)
@@ -1,6 +1,7 @@
 #ifdef REGISTER_WEAPON
 REGISTER_WEAPON(NEX, w_nex, IT_CELLS, 7, WEP_FLAG_NORMAL | WEP_TYPE_HITSCAN, BOT_PICKUP_RATING_HIGH, "nex", "nex", "Nex");
 #else
+#ifdef SVQC
 void SendCSQCNexBeamParticle() {
        vector v;
        v = WarpZone_UnTransformOrigin(WarpZone_trace_transform, trace_endpos);
@@ -80,3 +81,10 @@ float w_nex(float req)
        return TRUE;
 };
 #endif
+#ifdef CSQC
+float w_nex(float req)
+{
+       return TRUE;
+}
+#endif
+#endif