Idea: when a player enters a certain location that the player owns, the player is presented with the option to edit this location. Answering Yes to this question, I wish to add 2 verbs to the player's available verb list: a Push and a Pull verb.
Dilemma: I've got
verbs += obj/TentStuff/Tents/proc/Pull
however DM says that a
proc definition not allowed inside another proc
even though it is obvious that I'm not trying to do such a thing.
Question: What is one foolproof way of adding (and removing) the Pull and Push verbs?
verbs += obj/TentStuff/Tents/proc/Pull
If your trying to add a verb, why is Pull under a proc?
It should be
verbs += obj/TentStuff/Tents/verb/Pull