Skip to content

Commit

Permalink
- 配置文件更新 x 2。
Browse files Browse the repository at this point in the history
- 移除一段注释。
  • Loading branch information
KasumiNova committed Aug 27, 2024
1 parent b4513bb commit c09a4bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ public void parseTag(final Stitcher stitcher, final Set<Stitcher.Holder> targetH

public boolean holdersEquals(Set<Stitcher.Holder> targetHolders) {
if (targetHolders.size() != this.holders.size()) {
StellarCore.log.warn("[StellarCore-StitcherCache] Stitcher cache may be unavailable, holders size not equals ({} ≠ {}).", targetHolders.size(), this.holders.size());
// return false;
StellarCore.log.warn("[StellarCore-StitcherCache] Stitcher cache is unavailable, holders size not equals ({} ≠ {}).", targetHolders.size(), this.holders.size());
return false;
}
Map<String, Stitcher.Holder> holders = new Object2ObjectOpenHashMap<>(this.holders);
for (final Stitcher.Holder holder : targetHolders) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ public static class Vanilla {
})
@Config.RequiresMcRestart
@Config.Name("StitcherCache")
public boolean stitcherCache = true;
public boolean stitcherCache = false;

@Config.Comment({
"(Client Performance) Caches the state of existence of each resource file in the ResourcePack,",
Expand Down

0 comments on commit c09a4bf

Please sign in to comment.