mob/var/equipped = null
then I make that variable to something
src.equipped == /obj/sword
What I want to do in a verb is get the name of that variable. I have called something like:
src << src.equipped
but I get the icon as well. Is there a way I can go like this:
src << src.equipped.name
could I make it like presume something is a type of something or something else?
To do that, you'd need to actually allocate an object to equipped. For example: