Skip to content

Commit

Permalink
Merge remote-tracking branch 'master/1.17' into 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
FxMorin committed Aug 12, 2021
2 parents 9b0a953 + b6471ea commit 96d89f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class ServerWorld_spawnChunksMixin {
* loaded. The fix is just to make sure that the player list is never
* considered empty.
*/
@Redirect(method= "tick(Ljava/util/function/BooleanSupplier;)V",at=@At(value="INVOKE",target="Ljava/util/List;isEmpty()Z"))
@Redirect(method= "tick(Ljava/util/function/BooleanSupplier;)V",require=0,at=@At(value="INVOKE",target="Ljava/util/List;isEmpty()Z"))
public boolean spawnChunksStayLoaded(List list) {
return !CarpetFixesSettings.spawnChunkEntitiesUnloadingFix && list.isEmpty();
}
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"Copetan"
],
"contact": {
"homepage": "https://github.com/fxmorin/CarpetFixes",
"sources": "https://github.com/fxmorin/CarpetFixes",
"issues": "https://github.com/fxmorin/CarpetFixes/issues"
"homepage": "https://github.com/fxmorin/carpet-fixes",
"sources": "https://github.com/fxmorin/carpet-fixes",
"issues": "https://github.com/fxmorin/carpet-fixes/issues"
},

"license": "CC0-1.0",
Expand Down

0 comments on commit 96d89f6

Please sign in to comment.