diff --git a/libsecondlife/examples/TestClient/Commands/Appearance/WearCommand.cs b/libsecondlife/examples/TestClient/Commands/Appearance/WearCommand.cs index a3431409..0bb479d6 100644 --- a/libsecondlife/examples/TestClient/Commands/Appearance/WearCommand.cs +++ b/libsecondlife/examples/TestClient/Commands/Appearance/WearCommand.cs @@ -14,6 +14,9 @@ namespace libsecondlife.TestClient public override string Execute(string[] args, LLUUID fromAgentID) { + if (args.Length < 1) + return "Usage: wear [outfit name] eg: 'wear /My Outfit/Dance Party"; + string target = String.Empty; bool bake = true;