]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/lib/warpzone/common.qc
Invert bool WarpZoneLib_ExactTrigger_Touch() so it's easier to use
[xonotic/xonotic-data.pk3dir.git] / qcsrc / lib / warpzone / common.qc
index 12fc316fd74078131e95734385a78afe2b21bf90..4e82e2a7dd96b013461a0329a02773fb4c3059cf 100644 (file)
@@ -818,7 +818,7 @@ bool WarpZoneLib_ExactTrigger_Touch(entity this, entity toucher)
                emin += '1 1 1';
                emax -= '1 1 1';
        }
-       return !WarpZoneLib_BoxTouchesBrush(emin, emax, this, toucher);
+       return WarpZoneLib_BoxTouchesBrush(emin, emax, this, toucher);
 }