Skip to content

Commit 27208da

Browse files
committed
Finalize v1.11
- Removed the Hoglin from the dig up animation - Hardcoded Forge version range to [1.17,1.21.5] - Removed the Dynamic Lights compatibility notice - Updated settings.svg for the wiki to add 'Reduce Hidden Enderman Particles' option
1 parent 23dd599 commit 27208da

File tree

9 files changed

+14
-19
lines changed

9 files changed

+14
-19
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- Improved performance by refactoring entity activation distance calculations to bundle and cache position data retrieval calls and by updating batch activation logic. The whole project is now up to 45% faster per tick!
55
- Modified the attack predicate of the secondary dig-up requirements so that it disregards the Y-distance. This allows mobs to, for example, appear at the bottom of pillars if a player decides to build up during the night
66
- Added an activation distance recommendation message when using the Vanilla activation mode
7+
- Removed the Hoglin from the dig up animation
78
- Fixed most compatibility issues with [Hostile Mobs Improve Over Time](https://modrinth.com/project/ku4JD9TH) by adding missing tag recovery logic when preparing an entity for hiding. This should generally improve compatibility with other packs that override entity tags (closes [#26](https://github.com/Tschipcraft/spawnanimations/issues/26))
89
- Fixed poof animation playing multiple times when "Play Animation on Unsupported Blocks" is off
910
- Fixed possibility of hidden falling mobs losing their fall distance NBT when appearing

META-INF/mods.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ features={ java_version = "[17,)" }
2727
[[dependencies.spawnanimations]]
2828
modId="minecraft"
2929
mandatory=true
30-
versionRange="${mc_version_range_forge}"
30+
versionRange="[1.17,1.21.5]"
3131
ordering="NONE"
3232
side="BOTH"
3333

data/spawnanimations/function/internal/version_checker/start.mcfunction

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ execute unless score $global tvc_ignore matches 1 if score $version ts.sa.settin
77
# Announce escape sequence handling changes
88
execute unless score $global tvc_ignore matches 1 if score $version ts.sa.settings matches 4298..4316 run tellraw @a [{"text":"[Spawn Animations] ","color":"gray"},{"text":"!","bold":true,"color":"gold"},{"text":" Due to changes in escape sequence handling, all text menus (including the settings menu) are unavailable from 25w02a through 25w08a.","color":"gold"}]
99

10-
# Dynamic Lights Notice
11-
execute if score dynamiclights load.status matches ..18 run tellraw @a [{"text":"[Spawn Animations] ","color":"gray"},{"text":"\u26a0 Please use any version of Tschipcraft's Dynamic Lights above v1.8.8 alongside Spawn Animations!","color":"red"}]
12-
1310
# Pehkui Integration
1411
scoreboard players set $pehkui_installed ts.sa.settings 0
1512
function spawnanimations:internal/entity/ehs/pehkui/check_installed

data/spawnanimations/functions/internal/version_checker/start.mcfunction

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ execute if score $version ts.sa.settings matches 1977..2230 run tellraw @a [{"te
1010
execute if score $version ts.sa.settings matches 1632..1976 run tellraw @a [{"text":"[Spawn Animations] ","color":"gray"},{"text":"\u26a0 Minecraft version ","color":"red"},{"text":"1.14","color":"red","bold": true},{"text":" detected! This pack does not work in 1.14! Please use ","color":"red"},{"text": "1.17 or above", "color":"red","underlined":true},{"text":"!","color":"red"}]
1111
execute if score $version ts.sa.settings matches 1343..1631 run tellraw @a [{"text":"[Spawn Animations] ","color":"gray"},{"text":"\u26a0 Minecraft version ","color":"red"},{"text":"1.13","color":"red","bold": true},{"text":" detected! This pack does not work in 1.13! Please use ","color":"red"},{"text": "1.17 or above", "color":"red","underlined":true},{"text":"!","color":"red"}]
1212

13-
# Dynamic Lights Notice
14-
execute if score dynamiclights load.status matches ..18 run tellraw @a [{"text":"[Spawn Animations] ","color":"gray"},{"text":"\u26a0 Please use any version of Tschipcraft's Dynamic Lights above v1.8.8 alongside Spawn Animations!","color":"red"}]
15-
1613
# Pehkui Integration
1714
scoreboard players set $pehkui_installed ts.sa.settings 0
1815
function spawnanimations:internal/entity/ehs/pehkui/check_installed

data/spawnanimations/tags/entity_type/can_wear_armor.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"minecraft:drowned",
88
"#minecraft:skeletons",
99
"minecraft:piglin",
10-
"minecraft:zombified_piglin",
11-
"minecraft:piglin_brute"
10+
"minecraft:piglin_brute",
11+
"minecraft:zombified_piglin"
1212
]
1313
}

data/spawnanimations/tags/entity_type/dig_up_animation.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@
88
"minecraft:skeleton",
99
"minecraft:stray",
1010
{"id": "minecraft:bogged", "required": false},
11+
"minecraft:creeper",
1112
"minecraft:spider",
1213
"minecraft:cave_spider",
13-
"minecraft:creeper",
14+
"minecraft:enderman",
1415
"minecraft:wither_skeleton",
15-
"minecraft:hoglin",
1616
"minecraft:zombified_piglin",
1717
"minecraft:strider",
18-
"minecraft:enderman",
1918
"minecraft:giant",
2019
"minecraft:magma_cube",
2120
"minecraft:slime"

data/spawnanimations/tags/entity_types/can_wear_armor.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"minecraft:drowned",
88
"#minecraft:skeletons",
99
"minecraft:piglin",
10-
"minecraft:zombified_piglin",
11-
"minecraft:piglin_brute"
10+
"minecraft:piglin_brute",
11+
"minecraft:zombified_piglin"
1212
]
1313
}

data/spawnanimations/tags/entity_types/dig_up_animation.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@
88
"minecraft:skeleton",
99
"minecraft:stray",
1010
{"id": "minecraft:bogged", "required": false},
11+
"minecraft:creeper",
1112
"minecraft:spider",
1213
"minecraft:cave_spider",
13-
"minecraft:creeper",
14+
"minecraft:enderman",
1415
"minecraft:wither_skeleton",
15-
"minecraft:hoglin",
1616
"minecraft:zombified_piglin",
1717
"minecraft:strider",
18-
"minecraft:enderman",
1918
"minecraft:giant",
2019
"minecraft:magma_cube",
2120
"minecraft:slime"

wiki/settings.svg

Lines changed: 4 additions & 2 deletions
Loading

0 commit comments

Comments
 (0)