]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Don't use PLAT_CRUSH for doors (same as DOOR_DONT_LINK)
authorFreddy <schro.sb@gmail.com>
Mon, 5 Mar 2018 14:37:00 +0000 (15:37 +0100)
committerFreddy <schro.sb@gmail.com>
Mon, 5 Mar 2018 14:37:00 +0000 (15:37 +0100)
qcsrc/common/triggers/func/door.qc
qcsrc/common/triggers/func/door.qh

index 21ee89b7b18ec646be01aab129c65b4ed5acbf2e..731cacb33f74e5f33049bbb1b80d7934f64c1d1b 100644 (file)
@@ -27,7 +27,7 @@ void door_go_up(entity this, entity actor, entity trigger);
 
 void door_blocked(entity this, entity blocker)
 {
-       if((this.spawnflags & PLAT_CRUSH)
+       if((this.spawnflags & DOOR_CRUSH)
 #ifdef SVQC
                && (blocker.takedamage != DAMAGE_NO)
 #elif defined(CSQC)
@@ -314,7 +314,7 @@ void door_touch(entity this, entity toucher)
 
 void door_generic_plat_blocked(entity this, entity blocker)
 {
-       if((this.spawnflags & PLAT_CRUSH) && (blocker.takedamage != DAMAGE_NO)) { // Kill Kill Kill!!
+       if((this.spawnflags & DOOR_CRUSH) && (blocker.takedamage != DAMAGE_NO)) { // Kill Kill Kill!!
 #ifdef SVQC
                Damage (blocker, this, this, 10000, DEATH_HURTTRIGGER.m_id, DMG_NOWEP, blocker.origin, '0 0 0');
 #endif
index 93a3eee51ea70926a3c635df473aebebb3581d14..23ba20df142f7244313e8d04293e85697dab8ad3 100644 (file)
@@ -8,6 +8,7 @@ const int DOOR_TOGGLE = BIT(5);
 const int DOOR_NOSPLASH = BIT(8); // generic anti-splashdamage spawnflag
 
 const int DOOR_NONSOLID = BIT(10);
+const int DOOR_CRUSH = BIT(11); // can't use PLAT_CRUSH cause that is the same as DOOR_DONT_LINK
 
 const int SPAWNFLAGS_GOLD_KEY = BIT(3);
 const int SPAWNFLAGS_SILVER_KEY = BIT(4);