Take_Verb()
set category = "Admin"
var/list/players = list()
for(var/mob/M in world)
if(M.client)
players += M
players += "Cancel"
var/mob/M = input("Whose verbs do you want to edit?") in players
if(M == "Cancel")
return
else
var/tverb = input("Which verb to you want to take?") in M.verbs
M.verbs -= tverb
Problem description:
I get into the game, and when I try to get rid of a verb, nothing happens. Been playing with the code for a while now, no results.