kindlich
kindlich
Is this something that has enough usecases to be added to CraftTweaker? Or is this a niche case where creating and loading the loader on your end would be better?
Easier script to reproduce: ```zs var range = 0 .. 10; for i in range { var j = i + 1; println(j); } for i in range { var...
Just so that I understand your issue: Of these, which one(s) do and don't work? ``` val itemFirst as IItemStack[IIngredient] = { item : item, tag.asIIngredient() : item }; val...
Maybe fixed by Stan's refactor?
Well, there was a section in CurseForge that probably noone remembers for sharing CrT scripts: There's also this repo that contains a few example files
Let me start by saying that this kind of stuff isn't really supported as it's basically abusing an event for something that it isn't intended for. However, your issue is...
> but without the ability to use arrays or cast arrays into list Lists and Arrays can be converted from one another. ``` import stdlib.List; var array = ['a', 'b',...
I still don't quite understand your usecase. So you want to have a list of 2D arrays for something? Like e.g. ```zenscript import stdlib.List; import crafttweaker.api.ingredient.IIngredient; var list = new...
Is this still an issue? The code from the example above should already be working?
@jaredlll08 Could this already be fixed by your changes for re-evaluating empty tags after the CrT load?