]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/triggers/triggers.qh
take3: format 903 files
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / triggers.qh
index 56ebb0c381e91750f35e719a60c7c00c8524297e..234bf9fc10643a927c01f58058592495adfb2606 100644 (file)
@@ -4,8 +4,8 @@ const float SF_TRIGGER_INIT = 1;
 const float SF_TRIGGER_UPDATE = 2;
 const float SF_TRIGGER_RESET = 4;
 
-const float    SPAWNFLAG_NOMESSAGE = 1;
-const float    SPAWNFLAG_NOTOUCH = 1;
+const float SPAWNFLAG_NOMESSAGE = 1;
+const float SPAWNFLAG_NOTOUCH = 1;
 
 .bool pushable;
 
@@ -49,9 +49,9 @@ void trigger_remove_generic(entity this);
 .string target;
 .string targetname;
 
-const int ACTIVE_NOT           = 0;
-const int ACTIVE_ACTIVE        = 1;
-const int ACTIVE_IDLE          = 2;
-const int ACTIVE_BUSY          = 2;
-const int ACTIVE_TOGGLE                = 3;
+const int ACTIVE_NOT        = 0;
+const int ACTIVE_ACTIVE     = 1;
+const int ACTIVE_IDLE       = 2;
+const int ACTIVE_BUSY       = 2;
+const int ACTIVE_TOGGLE     = 3;
 #endif