Aronai Sieyes
Aronai Sieyes
I see, that's uh. Some of those are pretty interesting behavior. I'll just redo it using the stub verb!
Could just be a macro for declaring value types, like... `LIST_VALUE_TYPE(list, "key", /type, initial)` And it just resolves to `list["key"] = initial` Would that work? I do not know a...
I'll also mention that the way byond does it (which is insane), according to @Leshana is that list["key"].someProc() is valid if ***any*** type has someProc() declared. So for the record...
One more demo case from @Leshana: ``` var/list/list/list_b = list("nested" = list()) list_b[1].Add("something") // No linter error, declared as /list/list - runtime error list_b["nested"].Add("something") // No linter error, declared as...
Thanks for the info, good to know `--convert-thumbnails` exists. I'm not sure what they mean in that other issue by 'MKV supports webp thumbnails'... it's going against the MKV spec,...