Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ default Material getMaterial(String name) {
/**
*
* @return {@code true} if this registry is frozen, {@code false} otherwise
* @see MappedRegistryAccessor#isFrozen()
* @see MappedRegistryAccessor#gtceu$isFrozen()
*/
boolean isFrozen();
}
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public Material getDefaultFallback() {

@Override
public boolean isFrozen() {
return ((MappedRegistryAccessor) (Object) this).isFrozen();
return ((MappedRegistryAccessor) (Object) this).gtceu$isFrozen();
}

public void close() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
@Mixin(MappedRegistry.class)
public interface MappedRegistryAccessor {

@Accessor
boolean isFrozen();
@Accessor("frozen")
boolean gtceu$isFrozen();
}
Loading