Current:
mob/One/verb
One()
set category = "Example One"
var/result = "Hello"
world << result
mob/Two/verb
One()
set category = "Example Two"
var/A = 0
world<<A
mob
Login()
..()
verbs+=typesof(/mob/One/verb/)
verbs+=typesof(/mob/Two/verb/)
Expected:
Two Tabs with the verbs "One" on each.
Instead:
You get the tab "Two" with the verb "One" as if the One / One had been completely overwritten.
Addendum: Even if you give the path different names, but use set name="One" it will overwrite the first "One"