tryashtar
tryashtar
```mcfunction give @s apple 99999 ``` This command is accepted by spyglass but always fails in-game, since as of [21w10a](https://minecraft.wiki/w/Java_Edition_21w10a) you can only give 100 stacks in one command. Since...
Since `score`, `selector`, and `nbt` require [component resolution](https://minecraft.wiki/w/Raw_JSON_text_format#Component_resolution), it should be warned when you attempt to use them in a place that can't resolve, such as `CustomName`, `custom_name`, `displayname`, or...
If the URL in `open_url`'s `value` is not valid, the game logs prints an error: ``` Can't open url for ClickEvent{action=OPEN_URL, value='asdf'} ``` So spyglass should catch this. The validation...
```mcfunction give @s diamond_sword[max_stack_size=5] give @s apple[max_damage=10] give @s saddle[max_stack_size=5,max_damage=10] ``` These commands are hard syntax errors in vanilla, since "item cannot be both damageable and stackable." Spyglass currently doesn't...
Hi there. Once I got this extension finally working, it was very pleasant. But _wow_, I have never seen an extension take so many steps to get working!! The readme...
I got this error: > additionalProperties /minecraft:entity/components/minecraft:npc/npc_data/portrait_offsets must NOT have additional properties: (additionalProperty: rotate) `rotate` is a valid and functional property in this field, just like `scale` and `translate`. It...
I got these errors: > additionalProperties /particle_effect/components/minecraft:emitter_shape_entity_aabb must NOT have additional properties: (additionalProperty: surface_only) > Wrong type: /particle_effect/components/minecraft:emitter_shape_entity_aabb/direction type must be array When using a particle with this component: ```json...
I got this error: > Wrong type: /minecraft:item/components/minecraft:interact_button type must be object When using an item with this component: ```json "minecraft:interact_button": "test" ``` But if I make it an object,...
Upon following the steps in the readme to build it, I received this error: ``` > [email protected] process > npx ./toolbuild/jsn/ validate --force -ot noreports -i ./public/res/latest/van/ -o ./public/data &&...
```py import beet import beet.contrib.vanilla def main(ctx: beet.Context): version = '1.19' vanilla = beet.contrib.vanilla.Vanilla(ctx=ctx, minecraft_version=version) # fetches 1.19.4 instead assert vanilla.releases[version].info.data["id"] == version ``` It seems like this ignoring of...