From 2dea007f1b492bebd19df65f3a493cf424f8eb26 Mon Sep 17 00:00:00 2001 From: "Juan G. Victores" Date: Thu, 25 May 2017 12:58:17 +0200 Subject: [PATCH] Update WorldRpcResponder help regarding mk obj Update WorldRpcResponder help regarding mk obj as suggested by @PeterBowman at https://github.com/roboticslab-uc3m/asibot-main/pull/34#pullrequestreview-39725004 --- src/libraries/RlPlugins/ravebot/WorldRpcResponder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/RlPlugins/ravebot/WorldRpcResponder.cpp b/src/libraries/RlPlugins/ravebot/WorldRpcResponder.cpp index c0a2c9a9..88ca5eaf 100644 --- a/src/libraries/RlPlugins/ravebot/WorldRpcResponder.cpp +++ b/src/libraries/RlPlugins/ravebot/WorldRpcResponder.cpp @@ -13,7 +13,7 @@ bool WorldRpcResponder::read(ConnectionReader& connection) { ConstString choice = in.get(0).asString(); if (in.get(0).getCode() != BOTTLE_TAG_STRING) choice=""; if (choice=="help") { ///////////////////////////////// help ///////////////////////////////// - out.addString("Available commands: help, world del all, world mk box/sbox (three params for size) (three params for pos), world mk ssph (radius) (three params for pos), world mk scyl (radius height) (three params for pos), world grab (obj) (num) 0/1, world grab obj (name) 0/1, world whereis obj (name), world whereis tcp, world draw 0/1 (radius r g b)."); + out.addString("Available commands: help, world del all, world mk box/sbox (three params for size) (three params for pos), world mk ssph (radius) (three params for pos), world mk scyl (radius height) (three params for pos), world mk mesh (no params yet), world mk obj (absolute path), world grab (obj) (num) 0/1, world grab obj (name) 0/1, world whereis obj (name), world whereis tcp, world draw 0/1 (radius r g b)."); out.write(*returnToSender); return true; } else if (choice=="world") {