From f62ef8d3b8c4a7476e5b038fb423655e0fa50953 Mon Sep 17 00:00:00 2001 From: Mircea Kitsune Date: Sun, 30 Oct 2011 12:52:03 +0200 Subject: [PATCH 1/1] Specify "no attachments" when the object had none, and fix a typo --- qcsrc/server/mutators/sandbox.qc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/qcsrc/server/mutators/sandbox.qc b/qcsrc/server/mutators/sandbox.qc index 46194714b..3d8256588 100644 --- a/qcsrc/server/mutators/sandbox.qc +++ b/qcsrc/server/mutators/sandbox.qc @@ -681,11 +681,14 @@ MUTATOR_HOOKFUNCTION(sandbox_PlayerCommand) { ++i; // start from 1 gettaginfo(e, head.tag_index); - s = strcat(s, "^1attachment ", ftos(i), "^7 has mesh ^3", head.model, "^7 at animation frame ^3", ftos(e.frame)); + s = strcat(s, "^1attachment ", ftos(i), "^7 has mesh ^3", head.model, "^7 at animation frame ^3", ftos(head.frame)); s = strcat(s, "^7 and is attached to bone ^5", gettaginfo_name, "^7, "); } } - print_to(self, strcat("^2SANDBOX - INFO: ^7Object contains the following ^1", ftos(i), "^7 attachment(s): ", s)); + if(i) // object contains attachments + print_to(self, strcat("^2SANDBOX - INFO: ^7Object contains the following ^1", ftos(i), "^7 attachment(s): ", s)); + else + print_to(self, "^2SANDBOX - INFO: ^7Object contains no attachments"); return TRUE; } } -- 2.39.2