-
-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove all old aliases and update skript-aliases to reference minimized branch. * fix spigot bugs and load-bearing performance issues this was so fuckin cursed * slightly less jank fix * rework alias parsing to allow __ block and __ item for appropriate materials * Update src/test/skript/tests/regressions/6707-spawn-fish-types.sk Co-authored-by: Patrick Miller <[email protected]> * Update Aliases.java * Clean up aliases file.
- Loading branch information
Showing
40 changed files
with
162 additions
and
138 deletions.
There are no files selected for viewing
Submodule skript-aliases
updated
20 files
+0 −356 | +global-variations.sk | |
+5 −3 | README.md | |
+0 −389 | armor-trims.sk | |
+0 −52 | brewing.sk | |
+0 −686 | building.sk | |
+1 −142 | combat.sk | |
+2 −826 | decoration.sk | |
+0 −19 | doors.sk | |
+5 −119 | foodstuffs.sk | |
+0 −196 | misc-eggs.sk | |
+0 −378 | misc.sk | |
+0 −277 | other.sk | |
+0 −297 | redstone.sk | |
+0 −82 | slabs.sk | |
+0 −70 | stairs.sk | |
+0 −65 | tools.sk | |
+7 −134 | transportation.sk | |
+0 −6 | z-block-placement.sk | |
+0 −2 | z-categories.sk | |
+0 −8 | z-click-events.sk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
test "item data serialization": | ||
|
||
# No assertion needed, it will be done internally | ||
set {a::1} to a dirt block named "DIRT" with lore "LORE1" and "LORE2" | ||
set {a::1} to a dirt named "DIRT" with lore "LORE1" and "LORE2" | ||
|
||
delete {a::1} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
aliases: | ||
closed birch door = minecraft:birch_door[open=false] | ||
any door = birch door, closed birch door | ||
any wood door = birch door, closed birch door | ||
|
||
test "item comparison": | ||
set {_test} to a dragon head | ||
assert {_test} is a dragon head with "failed to compare against a head" | ||
set {_test} to a door | ||
set {_test} to any door | ||
assert {_test} is any door, any wood door, birch door or a closed birch door with "failed to compare against a door" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.