You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With mod RequiousFracto installed, StringList.create returns different values based on variable declaration method.
test.zs:
#reloadable
import mods.zenutils.StringList;
print('~'~StringList.create(['one', 'two', 'three']).get(1));
val list = ['one', 'two', 'three'] as string[];
print('~'~StringList.create(list).get(1));
With mod RequiousFracto installed,
StringList.create
returns different values based on variable declaration method.test.zs:
crafttweaker.log:
The text was updated successfully, but these errors were encountered: