Skip to content

Commit

Permalink
build: 1.20-pre2
Browse files Browse the repository at this point in the history
  • Loading branch information
ishland committed May 17, 2023
1 parent 4124926 commit 882098b
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 @@ -39,8 +39,8 @@ private static int noTickCommand(CommandContext<ServerCommandSource> ctx) {
final ChunkTicketManager ticketManager = ((IServerChunkManager) chunkManager).getTicketManager();
final int noTickOnlyChunks = ((IChunkTicketManager) ticketManager).getNoTickOnlyChunks().size();
final int noTickPendingTicketUpdates = ((IChunkTicketManager) ticketManager).getNoTickPendingTicketUpdates();
ctx.getSource().sendFeedback(Text.of(String.format("No-tick chunks: %d", noTickOnlyChunks)), true);
ctx.getSource().sendFeedback(Text.of(String.format("No-tick chunk pending ticket updates: %d", noTickPendingTicketUpdates)), true);
ctx.getSource().sendFeedback(() -> Text.of(String.format("No-tick chunks: %d", noTickOnlyChunks)), true);
ctx.getSource().sendFeedback(() -> Text.of(String.format("No-tick chunk pending ticket updates: %d", noTickPendingTicketUpdates)), true);

return 0;
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ org.gradle.parallel=true
fabric.loom.multiProjectOptimisation=true
# Fabric Properties
# check these on https://fabricmc.net/versions.html
minecraft_version=1.20-pre1
yarn_mappings=1.20-pre1+build.7
minecraft_version=1.20-pre2
yarn_mappings=1.20-pre2+build.1
loader_version=0.14.19
# Mod Properties
mod_version=0.2.0+alpha.10
Expand Down

0 comments on commit 882098b

Please sign in to comment.