Annoying bug: lists all verb aliases

NecroDeath
15 Jan 2017, 13:42I have a tree in my game that you can cut down if you have an axe, the verb is set on the tree as hack; cut; chop
Logic works fine on tree, but player tries to chop anything else, e.g chop chair it returns the following, "you can't hack; cut; chop it", is there a way to stop it listing all the alternatives like this? Just the one the player used?
XanMag
15 Jan 2017, 15:41Not sure other than to delete all the verbs as a group and copy-paste each of them separately. If you add cut, hack, chop as separate verbs to the tree and copy-paste the code you want to have happen in each verb, that should get rid of that response. I think...
The Pixie
15 Jan 2017, 16:16If you are using the off-line editor, you will find a verb object (as opposed to a verb tab for this object) under the game object. You can change the text there.
If on-line, no.

NecroDeath
15 Jan 2017, 17:16Thanks both, I'll stick them in separately then.