Thread: Update 6.2
View Single Post
01/09/21, 04:43 AM   #13
Phuein
 
Phuein's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2018
Posts: 132
Just ran into an unexpected change that is probably a bug?

Code:
/script d(zo_strformat("<<i:1>>", 5))
Should return "5th" but instead returns "th". Can be fixed with:
Code:
/script d(zo_strformat("<<1>><<i:1>>", 5))
But definitely looks unintended.
  Reply With Quote