Skip to content

Commit

Permalink
fix: #35
Browse files Browse the repository at this point in the history
  • Loading branch information
zly2006 committed Jan 18, 2024
1 parent a317fcb commit 60dccef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx5G
org.gradle.parallel=true
# check these on https://fabricmc.net/develop
# Mod Properties
mod_version=0.3.5
mod_version=0.3.6
archices_preview_version=

maven_group=com.github.zly2006
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class MixinRegistrySyncManager {
target = "Lnet/fabricmc/fabric/impl/registry/sync/packet/RegistryPacketHandler;sendPacket(Ljava/util/function/Consumer;Ljava/util/Map;)V"
)
)
private static Map<Identifier, Object2IntMap<Identifier>> modifyIds(Map<Identifier, Object2IntMap<Identifier>> ids) {
private Map<Identifier, Object2IntMap<Identifier>> modifyIds(Map<Identifier, Object2IntMap<Identifier>> ids) {
Object2IntMap<Identifier> map = ids.get(Registries.SCREEN_HANDLER.getKey().getValue());
map.removeInt(EnclosureScreenHandler.ENCLOSURE_SCREEN_ID);
return ids;
Expand Down

0 comments on commit 60dccef

Please sign in to comment.