Skip to content

Commit

Permalink
Merge pull request #123 from AnonymousHacker1279/1.21.1-dev
Browse files Browse the repository at this point in the history
Fix client disconnects
  • Loading branch information
AnonymousHacker1279 authored Oct 29, 2024
2 parents d26d4b4 + f676084 commit dcd8b3b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 20 deletions.
16 changes: 2 additions & 14 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,5 @@
This minor update fixes several bugs.

### Feature Changes / Additions

- Add Celestial Altar block
- Effectively replaces the Skygazer enchantment upgrade trades
- This fixes several issues related to the way trades are handled in MC 1.21, due to them not having stack
context
- Acquired via a trade with a Skygazer
This minor update fixes one major bug.

### Bugfixes

- Fix Super Hans being killable before defeating the Champion Tower
- Fix Super Hans not being respawnable by tossing a Hans' Blessing into fire on a Champion Tower
- Fix random bear trap `NullPointerException` crashes with some entities
- Fix max enchant color not applying correctly
- Fix a trade for the Skeleton Merchant being zero-cost and therefore not being able to save properly when it is rolled
- Fix client disconnects on servers with multiple people due to datapack object syncing
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.daemon=true
org.gradle.caching=true
org.gradle.parallel=true
mod_id=immersiveweapons
mod_version=1.21.1-1.30.4
mod_version=1.21.1-1.30.5
mod_group_id=tech.anonymoushacker1279.immersiveweapons
neogradle.subsystems.parchment.minecraftVersion=1.21
neogradle.subsystems.parchment.mappingsVersion=2024.07.28
Expand All @@ -13,7 +13,7 @@ neoforge_version=21.1.72
neoforge_version_range=[21.1.0,)
loader_version_range=[4.0,)
biomesquisher_version=0.4.1
custom_portals_api_version=1.0.10
custom_portals_api_version=1.0.11-beta1
iwcb_version=1.21.1-1.10.1
jei_version=19.21.0.246
wthit_version=12.4.2
Expand Down
2 changes: 1 addition & 1 deletion optimization_utils.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ processResources {
int bytesProcessed = 0

println("Discovering JSON files in %s...".formatted(outputs.files.asPath))
ConfigurableFileTree jsonFiles = fileTree(dir: outputs.files.asPath, include: '**/*.json')
ConfigurableFileTree jsonFiles = fileTree(dir: outputs.files.asPath, include: ['**/*.json', '**/*.mcmeta'])
int totalFiles = jsonFiles.size()
println("Found %s JSON files in %sms.".formatted(totalFiles, (System.currentTimeMillis() - minifyStart)))
int processedFiles = 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public SimpleItemListing(int emeralds, ItemStack result, int maxUses) {
public static final StreamCodec<RegistryFriendlyByteBuf, SimpleItemListing> STREAM_CODEC = StreamCodec.composite(
ItemStack.STREAM_CODEC,
SimpleItemListing::item1,
ItemStack.STREAM_CODEC,
ItemStack.OPTIONAL_STREAM_CODEC,
SimpleItemListing::item2,
ItemStack.STREAM_CODEC,
SimpleItemListing::result,
Expand Down
5 changes: 3 additions & 2 deletions update.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"homepage": "https://www.curseforge.com/minecraft/mc-mods/immersive-weapons",
"promos": {
"1.21.1-latest": "1.21.1-1.30.4",
"1.21.1-recommended": "1.21.1-1.30.4",
"1.21.1-latest": "1.21.1-1.30.5",
"1.21.1-recommended": "1.21.1-1.30.5",
"1.20.4-latest": "1.20.4-1.29.2",
"1.20.4-recommended": "1.20.4-1.29.2",
"1.20.2-latest": "1.20.2-1.28.0",
Expand All @@ -29,6 +29,7 @@
"1.16.4-recommended": "1.16.5-1.1.1"
},
"1.21.1": {
"1.21.1-1.30.5": "Bugfixes - https://github.com/AnonymousHacker1279/ImmersiveWeapons/releases/tag/v1.30.5",
"1.21.1-1.30.4": "Bugfixes and improvements - https://github.com/AnonymousHacker1279/ImmersiveWeapons/releases/tag/v1.30.4",
"1.21.1-1.30.3": "Bugfixes and improvements - https://github.com/AnonymousHacker1279/ImmersiveWeapons/releases/tag/v1.30.3",
"1.21.1-1.30.2": "Bugfixes and improvements - https://github.com/AnonymousHacker1279/ImmersiveWeapons/releases/tag/v1.30.2",
Expand Down

0 comments on commit dcd8b3b

Please sign in to comment.