Skip to content

Commit

Permalink
Update WorldRpcResponder help regarding mk obj
Browse files Browse the repository at this point in the history
Update WorldRpcResponder help regarding mk obj as suggested by @PeterBowman at #34 (review)
  • Loading branch information
jgvictores authored May 25, 2017
1 parent 5ae7735 commit 2dea007
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/RlPlugins/ravebot/WorldRpcResponder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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") {
Expand Down

0 comments on commit 2dea007

Please sign in to comment.