From: Mircea Kitsune Date: Sun, 30 Oct 2011 10:52:03 +0000 (+0200) Subject: Specify "no attachments" when the object had none, and fix a typo X-Git-Tag: xonotic-v0.6.0~35^2~18^2~21 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=f62ef8d3b8c4a7476e5b038fb423655e0fa50953;p=xonotic%2Fxonotic-data.pk3dir.git Specify "no attachments" when the object had none, and fix a typo --- 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; } }