Skip to content

Commit

Permalink
Add husks and strays to kill zombie and kill skeleton advancements
Browse files Browse the repository at this point in the history
  • Loading branch information
jsorrell committed Jul 24, 2024
1 parent 463fffe commit c29af9c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
* Command that immediately tries to spawn a Wandering Trader nearby (for testing)

### Changed
* Kill Zombie advancement now accepts killing Husks
* Kill Skeleton advancement now accepts killing Strays

### Deprecated

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "minecraft:skeleton"
"type": [
"minecraft:skeleton",
"minecraft:stray"
]
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type": "minecraft:zombie"
"type": [
"minecraft:zombie",
"minecraft:husk"
]
}
}
]
Expand Down

0 comments on commit c29af9c

Please sign in to comment.