]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
removed debug messages from trigger_secret
authorPrzemysław Grzywacz <nexather@gmail.com>
Sun, 16 Oct 2011 21:26:02 +0000 (23:26 +0200)
committerPrzemysław Grzywacz <nexather@gmail.com>
Sun, 16 Oct 2011 21:26:02 +0000 (23:26 +0200)
qcsrc/server/secret.qc

index 07957e5491d951eed120a88840ead12d30f8f2b3..e5486ac755a6b8cf39aa9d9043e2580485686ba6 100644 (file)
@@ -5,7 +5,6 @@ entity secret_counter;
 .cnt - number of secrets found
 */
 void secret_counter_create() {
-       print("^1secret_counter_create()\n");
        secret_counter = spawn();
        secret_counter.classname = "secret_counter";
        secret_counter.count = 0;
@@ -22,9 +21,8 @@ void trigger_secret_touch() {
        
        // update secrets found counter
        secret_counter.cnt += 1;
-       print("Secret found: ", ftos(secret_counter.cnt), "/");
-       print(ftos(secret_counter.count), " - ");
-       print("self=", self.classname, ", other=", other.classname, "\n");
+       //print("Secret found: ", ftos(secret_counter.cnt), "/");
+       //print(ftos(secret_counter.count), "\n");
        
        // handle normal trigger features
        multi_touch();