Skip to content

Commit

Permalink
don't log mspt
Browse files Browse the repository at this point in the history
  • Loading branch information
IThundxr committed Nov 20, 2024
1 parent 8eef383 commit 3fa7665
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
org.gradle.jvmargs=-Xmx2G

# Mod Properties
mod_version = 0.0.43
mod_version = 0.0.44
maven_group = dev.ithundxr
archives_base_name = RailwaysTweaks

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ private void endServerTick(MinecraftServer server) {
// Calculate the average MSPT every AVERAGE_INTERVAL_TICKS
if (tickCount >= averageIntervalTicks) {
averageMSPT = totalMSPT / tickCount;
RailwaysTweaks.LOGGER.info("MSPT: " + averageMSPT);

// Reset for the next interval
totalMSPT = 0;
Expand Down

0 comments on commit 3fa7665

Please sign in to comment.