From 2b960ac700c3509d1ee8969d231736a435bbbfc7 Mon Sep 17 00:00:00 2001 From: JunkyDeveloper Date: Thu, 19 Mar 2026 21:10:26 +0100 Subject: [PATCH] added flint version to everything and minecraft ids --- tests/connectible/fences/fence.json | 2 +- tests/connectible/fences/fence_row_connections.json | 1 + tests/connectible/iron.json | 2 +- tests/connectible/walls/chain_in_wall.json | 3 ++- tests/connectible/walls/fence_gate_in_wall.json | 3 ++- tests/connectible/walls/fence_in_wall.json | 2 +- tests/connectible/walls/fences_over_walls.json | 3 ++- tests/connectible/walls/glass_panel_in_wall.json | 3 ++- tests/connectible/walls/iron_bars_in_wall.json | 3 ++- tests/connectible/walls/wall-2-to-3-length.json | 3 ++- tests/connectible/walls/wall.json | 3 ++- tests/connectible/walls/walls_wall.json | 3 ++- tests/fluids/mixing.json | 4 +++- tests/fluids/water/corner_flow.json | 4 +++- tests/fluids/water/downward_flow.json | 2 ++ tests/fluids/water/downward_priority.json | 2 ++ tests/fluids/water/falling_state.json | 2 ++ tests/fluids/water/flowing_state.json | 2 ++ tests/fluids/water/horizontal_spread.json | 2 ++ tests/fluids/water/infinite_source.json | 2 ++ tests/fluids/water/level_decrease.json | 2 ++ tests/fluids/water/max_spread_distance.json | 2 ++ tests/fluids/water/pool_formation.json | 2 ++ tests/fluids/water/ravine_fill.json | 2 ++ tests/fluids/water/replacement.json | 4 +++- tests/fluids/water/shortest_path.json | 2 ++ tests/fluids/water/source_removal.json | 2 ++ tests/fluids/water/stability.json | 2 ++ tests/fluids/water/stair_flow.json | 2 ++ tests/fluids/water/three_source_infinite.json | 2 ++ tests/fluids/water/u_shape.json | 2 ++ tests/fluids/water/vertical_column.json | 4 +++- tests/portal/nether/create_nether_portal_X_21_21_All.json | 5 ++--- tests/portal/nether/create_nether_portal_X_21_21_None.json | 5 ++--- tests/portal/nether/create_nether_portal_X_22_22_None.json | 5 ++--- tests/portal/nether/create_nether_portal_X_2_2_All.json | 5 ++--- tests/portal/nether/create_nether_portal_X_2_3_All.json | 5 ++--- tests/portal/nether/create_nether_portal_X_2_3_None.json | 5 ++--- tests/portal/nether/create_nether_portal_Z_2_2_None.json | 5 ++--- tests/portal/nether/create_nether_portal_Z_2_3_None.json | 5 ++--- tests/portal/nether/destroy_nether_portal_X_2_3_Bottom.json | 5 ++--- tests/portal/nether/destroy_nether_portal_X_2_3_Center.json | 5 ++--- tests/portal/nether/destroy_nether_portal_X_2_3_Left.json | 5 ++--- tests/portal/nether/destroy_nether_portal_X_2_3_Right.json | 5 ++--- tests/portal/nether/destroy_nether_portal_X_2_3_Top.json | 5 ++--- tests/portal/nether/nether_portal_X_2_3_adjacent_fill.json | 5 ++--- 46 files changed, 92 insertions(+), 57 deletions(-) diff --git a/tests/connectible/fences/fence.json b/tests/connectible/fences/fence.json index 35fb9d2..154bc6e 100644 --- a/tests/connectible/fences/fence.json +++ b/tests/connectible/fences/fence.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "fence_connection", "description": "Tests fence connection behavior across different wood types (oak, birch, jungle, spruce, dark_oak, mangrove, cherry, acacia, pale_oak, warped, crimson, bamboo) and validates connections/disconnections with non-fence blocks.", "tags": ["connectible", "fence", "wood-types", "block-state", "neighbor-update"], diff --git a/tests/connectible/fences/fence_row_connections.json b/tests/connectible/fences/fence_row_connections.json index 964c992..35e1d22 100644 --- a/tests/connectible/fences/fence_row_connections.json +++ b/tests/connectible/fences/fence_row_connections.json @@ -1,5 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", "name": "fence_row_connections", "description": "Places fences in a row, one per tick, and verifies they connect to each other", "tags": ["connectible", "fence", "wood-types", "block-state", "neighbor-update"], diff --git a/tests/connectible/iron.json b/tests/connectible/iron.json index 0528286..c9cabb1 100644 --- a/tests/connectible/iron.json +++ b/tests/connectible/iron.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "connectible_iron", "description": "Tests iron bars connection behavior with adjacent blocks (solid blocks, barriers, walls, pane-type blocks) and validates correct directional connection states.", "tags": ["connectible", "bars", "iron-bars", "block-state", "neighbor-update"], diff --git a/tests/connectible/walls/chain_in_wall.json b/tests/connectible/walls/chain_in_wall.json index c419378..c8b6cb8 100644 --- a/tests/connectible/walls/chain_in_wall.json +++ b/tests/connectible/walls/chain_in_wall.json @@ -1,9 +1,10 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "chain_in_wall", "description": "Recorded test: chain_in_wall", "tags": ["wall", "chain", "connectible"], + "minecraftIds": ["minecraft:cobblestone_wall"], "dependencies": [], "setup": { "cleanup": { diff --git a/tests/connectible/walls/fence_gate_in_wall.json b/tests/connectible/walls/fence_gate_in_wall.json index 6125a6e..70dcdec 100644 --- a/tests/connectible/walls/fence_gate_in_wall.json +++ b/tests/connectible/walls/fence_gate_in_wall.json @@ -1,9 +1,10 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "fence_gate_in_wall", "description": "Recorded test: fence_gate_in_wall", "tags": ["wall", "fence_gate", "connectible"], + "minecraftIds": ["minecraft:cobblestone_wall"], "dependencies": [], "setup": { "cleanup": { diff --git a/tests/connectible/walls/fence_in_wall.json b/tests/connectible/walls/fence_in_wall.json index e619553..f4b5f73 100644 --- a/tests/connectible/walls/fence_in_wall.json +++ b/tests/connectible/walls/fence_in_wall.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "fence_in_wall", "description": "Recorded test: fence_in_wall", "tags": ["wall", "fence", "connectible"], diff --git a/tests/connectible/walls/fences_over_walls.json b/tests/connectible/walls/fences_over_walls.json index 7faf9f7..be9e200 100644 --- a/tests/connectible/walls/fences_over_walls.json +++ b/tests/connectible/walls/fences_over_walls.json @@ -1,9 +1,10 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "fences_over_walls", "description": "Recorded test: fences_over_walls", "tags": ["wall", "fence", "connectible"], + "minecraftIds": ["minecraft:cobblestone_wall"], "dependencies": [], "setup": { "cleanup": { diff --git a/tests/connectible/walls/glass_panel_in_wall.json b/tests/connectible/walls/glass_panel_in_wall.json index 229161e..172bfbb 100644 --- a/tests/connectible/walls/glass_panel_in_wall.json +++ b/tests/connectible/walls/glass_panel_in_wall.json @@ -1,9 +1,10 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "glass_panel_in_wall", "description": "Recorded test: glass_panel_in_wall", "tags": ["wall", "glass", "connectible"], + "minecraftIds": ["minecraft:cobblestone_wall"], "dependencies": [], "setup": { "cleanup": { diff --git a/tests/connectible/walls/iron_bars_in_wall.json b/tests/connectible/walls/iron_bars_in_wall.json index 5265e89..ad909a7 100644 --- a/tests/connectible/walls/iron_bars_in_wall.json +++ b/tests/connectible/walls/iron_bars_in_wall.json @@ -1,9 +1,10 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "iron_bars_in_wall", "description": "Recorded test: iron_bars_in_wall", "tags": ["wall", "bars", "connectible"], + "minecraftIds": ["minecraft:cobblestone_wall"], "dependencies": [], "setup": { "cleanup": { diff --git a/tests/connectible/walls/wall-2-to-3-length.json b/tests/connectible/walls/wall-2-to-3-length.json index 2fe3686..758ad13 100644 --- a/tests/connectible/walls/wall-2-to-3-length.json +++ b/tests/connectible/walls/wall-2-to-3-length.json @@ -1,9 +1,10 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "walls", "description": "Recorded test: walls", "tags": ["wall", "connectible"], + "minecraftIds": ["minecraft:cobblestone_wall"], "dependencies": [], "setup": { "cleanup": { diff --git a/tests/connectible/walls/wall.json b/tests/connectible/walls/wall.json index 6b1dab3..890f131 100644 --- a/tests/connectible/walls/wall.json +++ b/tests/connectible/walls/wall.json @@ -1,9 +1,10 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "connectible_wall", "description": "Tests cobblestone wall connection behavior with adjacent blocks (solid blocks, fences, walls, barriers) and validates correct directional state updates.", "tags": ["connectible", "wall", "block-state", "neighbor-update"], + "minecraftIds": ["minecraft:cobblestone_wall"], "dependencies": [], "setup": { "cleanup": { diff --git a/tests/connectible/walls/walls_wall.json b/tests/connectible/walls/walls_wall.json index 6185851..77487c5 100644 --- a/tests/connectible/walls/walls_wall.json +++ b/tests/connectible/walls/walls_wall.json @@ -1,9 +1,10 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "0.0.0", "name": "walls_wall", "description": "Recorded test: walls_wall", "tags": ["wall", "connectible", "block-state", "neighbor-update"], + "minecraftIds": ["minecraft:cobblestone_wall"], "dependencies": [], "setup": { "cleanup": { diff --git a/tests/fluids/mixing.json b/tests/fluids/mixing.json index 60f15b3..b1776c5 100644 --- a/tests/fluids/mixing.json +++ b/tests/fluids/mixing.json @@ -1,8 +1,10 @@ { - "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", "name": "water_mixing_with_lava", "description": "Water converts lava source to obsidian", "tags": ["interaction", "lava"], + "minecraftIds": ["minecraft:water", "minecraft:lava"], "setup": { "cleanup": { "region": [ [0, 0, 0], [6, 5, 4] ] diff --git a/tests/fluids/water/corner_flow.json b/tests/fluids/water/corner_flow.json index feea80b..f5ffcee 100644 --- a/tests/fluids/water/corner_flow.json +++ b/tests/fluids/water/corner_flow.json @@ -1,5 +1,7 @@ { - "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_corner_flow", "description": "Water flows around corners properly", "tags": ["corner", "flow"], diff --git a/tests/fluids/water/downward_flow.json b/tests/fluids/water/downward_flow.json index 45f643f..7f9ebe7 100644 --- a/tests/fluids/water/downward_flow.json +++ b/tests/fluids/water/downward_flow.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_basic_downward_flow", "description": "Water flows downward when placed above air", "tags": ["basic", "flow", "gravity"], diff --git a/tests/fluids/water/downward_priority.json b/tests/fluids/water/downward_priority.json index dc1c8d7..67a3c34 100644 --- a/tests/fluids/water/downward_priority.json +++ b/tests/fluids/water/downward_priority.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_downward_priority", "description": "Water prioritizes flowing down over horizontal spread", "tags": ["priority", "flow"], diff --git a/tests/fluids/water/falling_state.json b/tests/fluids/water/falling_state.json index a7090d1..ea3bd52 100644 --- a/tests/fluids/water/falling_state.json +++ b/tests/fluids/water/falling_state.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_falling_state", "description": "Water sets falling=true when flowing downward", "tags": ["state", "falling"], diff --git a/tests/fluids/water/flowing_state.json b/tests/fluids/water/flowing_state.json index e976667..3f9e273 100644 --- a/tests/fluids/water/flowing_state.json +++ b/tests/fluids/water/flowing_state.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_flowing_state", "description": "Water has correct flowing state when not at source level", "tags": ["state", "flow"], diff --git a/tests/fluids/water/horizontal_spread.json b/tests/fluids/water/horizontal_spread.json index d76754a..0307489 100644 --- a/tests/fluids/water/horizontal_spread.json +++ b/tests/fluids/water/horizontal_spread.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_horizontal_spread", "description": "Water spreads horizontally up to 4 blocks from source", "tags": ["basic", "flow", "horizontal"], diff --git a/tests/fluids/water/infinite_source.json b/tests/fluids/water/infinite_source.json index 3c0f583..c671d6f 100644 --- a/tests/fluids/water/infinite_source.json +++ b/tests/fluids/water/infinite_source.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_infinite_source_creation", "description": "Two source blocks create infinite source when diagonally adjacent", "tags": ["infinite", "source"], diff --git a/tests/fluids/water/level_decrease.json b/tests/fluids/water/level_decrease.json index df5d730..c6fcd49 100644 --- a/tests/fluids/water/level_decrease.json +++ b/tests/fluids/water/level_decrease.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_level_decrease", "description": "Water level decreases by 1 per block horizontally", "tags": ["level", "flow"], diff --git a/tests/fluids/water/max_spread_distance.json b/tests/fluids/water/max_spread_distance.json index d50eef2..5483263 100644 --- a/tests/fluids/water/max_spread_distance.json +++ b/tests/fluids/water/max_spread_distance.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_max_spread_distance", "description": "Water spreads exactly 7 blocks from source on flat surface", "tags": ["distance", "limit"], diff --git a/tests/fluids/water/pool_formation.json b/tests/fluids/water/pool_formation.json index 69a36a0..15b4522 100644 --- a/tests/fluids/water/pool_formation.json +++ b/tests/fluids/water/pool_formation.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_pool_formation", "description": "Water fills a pool evenly from single source", "tags": ["pool", "fill"], diff --git a/tests/fluids/water/ravine_fill.json b/tests/fluids/water/ravine_fill.json index fbf750b..02f85ff 100644 --- a/tests/fluids/water/ravine_fill.json +++ b/tests/fluids/water/ravine_fill.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_ravine_fill", "description": "Water fills a ravine from top to bottom", "tags": ["ravine", "fill", "complex"], diff --git a/tests/fluids/water/replacement.json b/tests/fluids/water/replacement.json index 4926a79..ce415a7 100644 --- a/tests/fluids/water/replacement.json +++ b/tests/fluids/water/replacement.json @@ -1,5 +1,7 @@ { - "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_replacement_behavior", "description": "Water can replace certain non-solid blocks", "tags": ["replacement", "block"], diff --git a/tests/fluids/water/shortest_path.json b/tests/fluids/water/shortest_path.json index 0b01a2d..13c733b 100644 --- a/tests/fluids/water/shortest_path.json +++ b/tests/fluids/water/shortest_path.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_spreading_priority_shortest_path", "description": "Water takes shortest path to lower ground", "tags": ["pathfinding", "priority"], diff --git a/tests/fluids/water/source_removal.json b/tests/fluids/water/source_removal.json index 77b6367..2ce7db5 100644 --- a/tests/fluids/water/source_removal.json +++ b/tests/fluids/water/source_removal.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_source_removal", "description": "Flowing water disappears when source is removed", "tags": ["source", "removal"], diff --git a/tests/fluids/water/stability.json b/tests/fluids/water/stability.json index 9179447..19d0ec6 100644 --- a/tests/fluids/water/stability.json +++ b/tests/fluids/water/stability.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_tick_rate_consistency", "description": "Water updates consistently with 5-tick rate", "tags": ["timing", "tick"], diff --git a/tests/fluids/water/stair_flow.json b/tests/fluids/water/stair_flow.json index 8619608..91ddf9e 100644 --- a/tests/fluids/water/stair_flow.json +++ b/tests/fluids/water/stair_flow.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_stair_flow", "description": "Water flows down stairs correctly", "tags": ["stairs", "flow"], diff --git a/tests/fluids/water/three_source_infinite.json b/tests/fluids/water/three_source_infinite.json index 6f2e589..6906ef6 100644 --- a/tests/fluids/water/three_source_infinite.json +++ b/tests/fluids/water/three_source_infinite.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_three_source_infinite", "description": "Three adjacent source blocks create stable infinite sources", "tags": ["infinite", "source", "stable"], diff --git a/tests/fluids/water/u_shape.json b/tests/fluids/water/u_shape.json index c6cbbde..7b74f9e 100644 --- a/tests/fluids/water/u_shape.json +++ b/tests/fluids/water/u_shape.json @@ -1,5 +1,7 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", + "minecraftIds": ["minecraft:water"], "name": "water_u_shape_flow", "description": "Water flows around obstacles in U-shaped channel", "tags": ["pathfinding", "complex"], diff --git a/tests/fluids/water/vertical_column.json b/tests/fluids/water/vertical_column.json index 798f0b8..f1e41f5 100644 --- a/tests/fluids/water/vertical_column.json +++ b/tests/fluids/water/vertical_column.json @@ -1,7 +1,9 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", + "flintVersion": "0.0.0", "name": "water_vertical_column", - "description": "Water creates continuous vertical column when falling", + "description": "Water creates continuous vertical column when falling", + "minecraftIds": ["minecraft:water"], "tags": ["vertical", "falling"], "setup": { "cleanup": { diff --git a/tests/portal/nether/create_nether_portal_X_21_21_All.json b/tests/portal/nether/create_nether_portal_X_21_21_All.json index 2327d97..578dd15 100644 --- a/tests/portal/nether/create_nether_portal_X_21_21_All.json +++ b/tests/portal/nether/create_nether_portal_X_21_21_All.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "create_nether_portal_X_21_21_All", "description": "Test different portal size", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [30, 30, 30] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/create_nether_portal_X_21_21_None.json b/tests/portal/nether/create_nether_portal_X_21_21_None.json index 4c51a79..8377e2b 100644 --- a/tests/portal/nether/create_nether_portal_X_21_21_None.json +++ b/tests/portal/nether/create_nether_portal_X_21_21_None.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "create_nether_portal_X_21_21_None", "description": "Test different portal size", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [30, 30, 30] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/create_nether_portal_X_22_22_None.json b/tests/portal/nether/create_nether_portal_X_22_22_None.json index 5257ca6..f302fbd 100644 --- a/tests/portal/nether/create_nether_portal_X_22_22_None.json +++ b/tests/portal/nether/create_nether_portal_X_22_22_None.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "create_nether_portal_X_22_22_None", "description": "Test different portal size", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [30, 30, 30] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/create_nether_portal_X_2_2_All.json b/tests/portal/nether/create_nether_portal_X_2_2_All.json index f0d9874..799b1eb 100644 --- a/tests/portal/nether/create_nether_portal_X_2_2_All.json +++ b/tests/portal/nether/create_nether_portal_X_2_2_All.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "create_nether_portal_X_2_2_All", "description": "Test different portal size", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [30, 30, 30] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/create_nether_portal_X_2_3_All.json b/tests/portal/nether/create_nether_portal_X_2_3_All.json index fafa597..3b0d125 100644 --- a/tests/portal/nether/create_nether_portal_X_2_3_All.json +++ b/tests/portal/nether/create_nether_portal_X_2_3_All.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "create_nether_portal_X_2_3_All", "description": "Test different portal size", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [30, 30, 30] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/create_nether_portal_X_2_3_None.json b/tests/portal/nether/create_nether_portal_X_2_3_None.json index 32a69e0..9cf51d2 100644 --- a/tests/portal/nether/create_nether_portal_X_2_3_None.json +++ b/tests/portal/nether/create_nether_portal_X_2_3_None.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "nether_portal_X_2_3_None", "description": "Test different portal size", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [30, 30, 30] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/create_nether_portal_Z_2_2_None.json b/tests/portal/nether/create_nether_portal_Z_2_2_None.json index 7264c77..0ab6e13 100644 --- a/tests/portal/nether/create_nether_portal_Z_2_2_None.json +++ b/tests/portal/nether/create_nether_portal_Z_2_2_None.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "create_nether_portal_Z_2_2_None", "description": "Test different portal size", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [30, 30, 30] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/create_nether_portal_Z_2_3_None.json b/tests/portal/nether/create_nether_portal_Z_2_3_None.json index 8739345..6f659f3 100644 --- a/tests/portal/nether/create_nether_portal_Z_2_3_None.json +++ b/tests/portal/nether/create_nether_portal_Z_2_3_None.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "create_nether_portal_Z_2_3_None", "description": "Test different portal size", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [30, 30, 30] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/destroy_nether_portal_X_2_3_Bottom.json b/tests/portal/nether/destroy_nether_portal_X_2_3_Bottom.json index 23fca2c..9a4cdf7 100644 --- a/tests/portal/nether/destroy_nether_portal_X_2_3_Bottom.json +++ b/tests/portal/nether/destroy_nether_portal_X_2_3_Bottom.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "destroy_nether_portal_X_2_3_Bottom", "description": "Test different portal size to destroy", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [23, 23, 23] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/destroy_nether_portal_X_2_3_Center.json b/tests/portal/nether/destroy_nether_portal_X_2_3_Center.json index e7b552d..c303a01 100644 --- a/tests/portal/nether/destroy_nether_portal_X_2_3_Center.json +++ b/tests/portal/nether/destroy_nether_portal_X_2_3_Center.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "destroy_nether_portal_X_2_3_Center", "description": "Test different portal size to destroy", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [23, 23, 23] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/destroy_nether_portal_X_2_3_Left.json b/tests/portal/nether/destroy_nether_portal_X_2_3_Left.json index 236164f..1907d0f 100644 --- a/tests/portal/nether/destroy_nether_portal_X_2_3_Left.json +++ b/tests/portal/nether/destroy_nether_portal_X_2_3_Left.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "destroy_nether_portal_X_2_3_Left", "description": "Test different portal size to destroy", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [23, 23, 23] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/destroy_nether_portal_X_2_3_Right.json b/tests/portal/nether/destroy_nether_portal_X_2_3_Right.json index 8cad2af..2363c68 100644 --- a/tests/portal/nether/destroy_nether_portal_X_2_3_Right.json +++ b/tests/portal/nether/destroy_nether_portal_X_2_3_Right.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "destroy_nether_portal_X_2_3_Right", "description": "Test different portal size to destroy", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [23, 23, 23] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/destroy_nether_portal_X_2_3_Top.json b/tests/portal/nether/destroy_nether_portal_X_2_3_Top.json index 3562416..8631a39 100644 --- a/tests/portal/nether/destroy_nether_portal_X_2_3_Top.json +++ b/tests/portal/nether/destroy_nether_portal_X_2_3_Top.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "destroy_nether_portal_X_2_3_Top", "description": "Test different portal size to destroy", "tags": ["portal", "nether_portal", "obsidian", "fire"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [23, 23, 23] ] - }, - "player": null + } }, "timeline": [ { diff --git a/tests/portal/nether/nether_portal_X_2_3_adjacent_fill.json b/tests/portal/nether/nether_portal_X_2_3_adjacent_fill.json index d5a8b64..b69dc4a 100644 --- a/tests/portal/nether/nether_portal_X_2_3_adjacent_fill.json +++ b/tests/portal/nether/nether_portal_X_2_3_adjacent_fill.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/FlintTestMC/flint-core/refs/heads/main/flint-content/test_spec_schema.json", - "flintVersion": null, + "flintVersion": "1.0.0", "name": "nether_portal_X_2_3_adjacent_fill", "description": "Tests that placing and removing blocks adjacent to a 2x3 X-axis nether portal (front and back faces) does not destroy the portal", "tags": ["portal", "nether_portal", "obsidian"], @@ -9,8 +9,7 @@ "setup": { "cleanup": { "region": [ [0, 0, 0], [4, 5, 3] ] - }, - "player": null + } }, "timeline": [ {