Remove internal phase comments and format code

Strip all Phase references, TODO/FUTURE roadmap notes, and internal
planning comments from the codebase. Run Prettier for consistent
formatting across all Java files.
This commit is contained in:
NotEvil
2026-04-12 01:24:49 +02:00
parent 73d70e212d
commit a71093ba9c
482 changed files with 8500 additions and 5155 deletions

View File

@@ -132,9 +132,7 @@ public class Position {
);
}
// ========================================
// NBT SERIALIZATION
// ========================================
/**
* Save this position to NBT.
@@ -204,9 +202,7 @@ public class Position {
return new Position(x, y, z, yaw, pitch, dimension);
}
// ========================================
// GETTERS
// ========================================
public double getX() {
return x;
@@ -301,9 +297,7 @@ public class Position {
return Math.sqrt(dx * dx + dz * dz);
}
// ========================================
// OBJECT OVERRIDES
// ========================================
@Override
public String toString() {

View File

@@ -2,7 +2,6 @@ package com.tiedup.remake.util.teleport;
import com.tiedup.remake.core.TiedUpMod;
import java.util.function.Function;
import org.jetbrains.annotations.Nullable;
import net.minecraft.resources.ResourceKey;
import net.minecraft.server.MinecraftServer;
import net.minecraft.server.level.ServerLevel;
@@ -13,6 +12,7 @@ import net.minecraft.world.level.Level;
import net.minecraft.world.level.portal.PortalInfo;
import net.minecraft.world.phys.Vec3;
import net.minecraftforge.common.util.ITeleporter;
import org.jetbrains.annotations.Nullable;
/**
* Utility class for teleporting entities across dimensions.
@@ -320,9 +320,7 @@ public class TeleportHelper {
return position;
}
// ========================================
// CUSTOM TELEPORTER FOR FORGE
// ========================================
/**
* Custom teleporter that preserves exact position and rotation.