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

@@ -1,12 +1,12 @@
package com.tiedup.remake.items;
import com.tiedup.remake.core.SystemMessageManager;
import com.tiedup.remake.v2.BodyRegionV2;
import com.tiedup.remake.core.TiedUpMod;
import com.tiedup.remake.items.base.ILockable;
import com.tiedup.remake.state.IBondageState;
import com.tiedup.remake.util.KidnappedHelper;
import com.tiedup.remake.util.TiedUpSounds;
import com.tiedup.remake.v2.BodyRegionV2;
import java.util.UUID;
import net.minecraft.network.chat.Component;
import net.minecraft.world.InteractionHand;
@@ -21,8 +21,6 @@ import net.minecraftforge.api.distmarker.OnlyIn;
/**
* Master Key - Universal key that opens any padlock.
*
* Phase 15: Full master key implementation
* Phase 20: Opens SlaveItemManagementScreen in master mode
*
* Behavior:
* - Right-click: Opens Slave Management GUI (can unlock any lock)
@@ -124,7 +122,9 @@ public class ItemMasterKey extends Item {
net.minecraft.world.entity.LivingEntity target
) {
net.minecraft.client.Minecraft.getInstance().setScreen(
new com.tiedup.remake.client.gui.screens.UnifiedBondageScreen(target)
new com.tiedup.remake.client.gui.screens.UnifiedBondageScreen(
target
)
);
}