Skip to content

Commit

Permalink
Removed faulty debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
SmylerMC committed May 25, 2020
1 parent 0bc2353 commit 36b44f7
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 @@ -10,6 +10,6 @@ forge_version = 1.12.2-14.23.5.2847
mcp_mappings = stable_39

# Mod stuff
mod_version = 1.0.0-beta4
mod_version = 1.0.0-beta4.1
mod_group = fr.smyler.terramap
mod_id = terramap
1 change: 0 additions & 1 deletion src/main/java/fr/smyler/terramap/TerramapEventHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ public static void onWorldTick(WorldTickEvent event) {
if(!(world.getWorldType() instanceof EarthWorldType)) return;
if(tickCounter == 0) {
SyncedPlayer[] players = new SyncedPlayer[world.playerEntities.size()];
System.out.println(world.playerEntities.size());
for(int i=0; i<players.length; i++) {
players[i] = new SyncedPlayer(world.playerEntities.get(i));
}
Expand Down

0 comments on commit 36b44f7

Please sign in to comment.