guessing your :sub()
command is wrong.
it begins at position three, but then ends at length of ".warn" which is 5
so :sub(3, 5)
will never return anything that will never == ".warn"
at best, it might give you ".wa"
you need to add three to the second arg in your sub()
:sub(3, #".warn" +3) == ".warn"
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…