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

@@ -4,13 +4,13 @@ import com.tiedup.remake.core.ModConfig;
import com.tiedup.remake.core.TiedUpMod;
import com.tiedup.remake.dialogue.EntityDialogueManager;
import java.util.UUID;
import org.jetbrains.annotations.Nullable;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.item.ItemEntity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.Items;
import org.jetbrains.annotations.Nullable;
/**
* Tracks savior and reward state for EntityDamsel.
@@ -43,9 +43,7 @@ public class DamselRewardTracker {
this.damsel = damsel;
}
// ========================================
// SAVIOR GETTERS/SETTERS
// ========================================
/**
* Set the player who rescued this damsel.
@@ -76,9 +74,7 @@ public class DamselRewardTracker {
return this.saviorUUID;
}
// ========================================
// ANTI-ABUSE TRACKING
// ========================================
/**
* Set the player who tied this damsel (for reward anti-abuse).
@@ -113,9 +109,7 @@ public class DamselRewardTracker {
this.tiedByUUID = null;
}
// ========================================
// REWARD LOGIC
// ========================================
/**
* Reward the player who rescued this damsel.
@@ -196,9 +190,7 @@ public class DamselRewardTracker {
);
}
// ========================================
// NBT PERSISTENCE
// ========================================
/**
* Save reward tracker state to NBT.