Skip to content

Commit

Permalink
Merged 1.9.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Majrusz authored Apr 26, 2024
2 parents dbab2bb + cc28ddf commit 1cdcabe
Show file tree
Hide file tree
Showing 16 changed files with 263 additions and 9 deletions.
11 changes: 5 additions & 6 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
- added Undead Army compatibility with RpgZ mod (suggested by @Sazuzaki)
- added Japanese translation (thanks to @もふざとう)
- changed fishing requirements for Angler Treasure Bag from 20/15/10 to 16 on all game stages
- fixed bug with mobs being able to spawn in Mushroom Fields and Deep Dark (reported by @Dagamer2021)
- fixed bug with Undead Army progress bars displaying invalid values after reentering the world
- fixed bug with mob groups being able to spawn recursively
- added Forge tags to items (thanks to @DiogoSoaresMiranda)
- added Korean translation (thanks to @glasslim)
- fixed compatibility crash related to Soul Jar (reported by @𝙿𝙰𝚇𝚇)
- fixed compatibility error when reloading resources (reported by @SettingDust)
- fixed compatibility crash with Randomium (reported by @Doom, @ZacGames, @AllyJaxx)
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,8 @@ public static class Client {
.addCondition( data->data.itemStack.getItem() instanceof SoulJar );

OnItemAttributeTooltip.listen( Client::addTooltip )
.addCondition( data->SoulJar.canHaveSouls( data.itemStack ) );
.addCondition( data->SoulJar.canHaveSouls( data.itemStack ) )
.addCondition( data->Side.getLocalPlayer() != null /* compatibility check */ );

OnItemTooltip.listen( Client::addTooltip )
.addCondition( data->SoulJar.canHaveSouls( data.itemStack ) );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ public List< ItemSetRequirement > findRequirementsMet( LivingEntity entity ) {
private ItemSet() {
Side.runOnClient( ()->()->{
OnItemTooltip.listen( data->Client.addTooltip( data, this ) )
.addCondition( data->this.requirements.stream().anyMatch( requirement->requirement.is( data.itemStack ) ) );
.addCondition( data->this.requirements.stream().anyMatch( requirement->requirement.is( data.itemStack ) ) )
.addCondition( data->Side.getLocalPlayer() != null /* compatibility check */ );
} );
}

Expand Down
193 changes: 193 additions & 0 deletions common/src/main/resources/assets/majruszsdifficulty/lang/ko_kr.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions common/src/main/resources/data/forge/tags/items/axes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"majruszsdifficulty:enderium_axe"
]
}
6 changes: 6 additions & 0 deletions common/src/main/resources/data/forge/tags/items/boots.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"values": [
"majruszsdifficulty:enderium_boots",
"majruszsdifficulty:tattered_boots"
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"values": [
"majruszsdifficulty:enderium_chestplate",
"majruszsdifficulty:tattered_chestplate"
]
}
6 changes: 6 additions & 0 deletions common/src/main/resources/data/forge/tags/items/helmets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"values": [
"majruszsdifficulty:enderium_helmet",
"majruszsdifficulty:tattered_helmet"
]
}
5 changes: 5 additions & 0 deletions common/src/main/resources/data/forge/tags/items/hoes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"majruszsdifficulty:enderium_hoe"
]
}
5 changes: 5 additions & 0 deletions common/src/main/resources/data/forge/tags/items/ingots.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"majruszsdifficulty:enderium_ingot"
]
}
6 changes: 6 additions & 0 deletions common/src/main/resources/data/forge/tags/items/leggings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"values": [
"majruszsdifficulty:enderium_leggings",
"majruszsdifficulty:tattered_leggings"
]
}
5 changes: 5 additions & 0 deletions common/src/main/resources/data/forge/tags/items/nuggets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"majruszsdifficulty:enderium_shard"
]
}
5 changes: 5 additions & 0 deletions common/src/main/resources/data/forge/tags/items/pickaxes.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"majruszsdifficulty:enderium_pickaxe"
]
}
5 changes: 5 additions & 0 deletions common/src/main/resources/data/forge/tags/items/shovels.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"values": [
"majruszsdifficulty:enderium_shovel"
]
}
6 changes: 6 additions & 0 deletions common/src/main/resources/data/forge/tags/items/swords.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"values": [
"majruszsdifficulty:enderium_sword",
"majruszsdifficulty:wither_sword"
]
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ minecraft_version=1.20.1
# Mod
mod_id=majruszsdifficulty
mod_archives_name=majruszs-difficulty
mod_version=1.9.9
mod_version=1.9.10
mod_display_name=Majrusz's Progressive Difficulty
mod_description=Mod that progressively increases the game difficulty over time.
mod_authors=Majrusz
Expand Down

0 comments on commit 1cdcabe

Please sign in to comment.