Skip to content

Commit

Permalink
:3
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSn0wy committed Apr 18, 2024
1 parent b135820 commit 44719da
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ yarn_mappings=1.20.4+build.3
loader_version=0.15.9

# Mod Properties
mod_version=1.0.0
mod_version=1.0.1
maven_group=dev.mrsnowy.teleport_commands
archives_base_name=teleport_commands

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@ private void onWorldLoad(MinecraftServer minecraftServer, ServerWorld serverWorl
SAVE_DIR = Path.of(String.valueOf(minecraftServer.getSavePath(WorldSavePath.ROOT)));
CONFIG_DIR = FabricLoader.getInstance().getConfigDir();

LOGGER.error(String.valueOf(SAVE_DIR));
LOGGER.error(String.valueOf(CONFIG_DIR));

Server = minecraftServer;
StorageManager.StorageInit();
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void run() {
world.spawnParticles(ParticleTypes.SNOWFLAKE, player.getX(), player.getY() , player.getZ(), 20, 0.0D, 1.0D, 0.0D, 0.01);
world.spawnParticles(ParticleTypes.WHITE_SMOKE, player.getX(), player.getY(), player.getZ(), 15, 0.0D, 0.0D, 0.0D, 0.03);
}
}, 100 // hopefully good
}, 100 // hopefully good, 2 ticks
);
}

Expand Down

0 comments on commit 44719da

Please sign in to comment.