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:
@@ -29,31 +29,52 @@ public class PlayerDataRetrieval {
|
||||
// ========== Equipment Getters ==========
|
||||
|
||||
public ItemStack getCurrentBind() {
|
||||
return V2EquipmentHelper.getInRegion(host.getPlayer(), BodyRegionV2.ARMS);
|
||||
return V2EquipmentHelper.getInRegion(
|
||||
host.getPlayer(),
|
||||
BodyRegionV2.ARMS
|
||||
);
|
||||
}
|
||||
|
||||
public ItemStack getCurrentGag() {
|
||||
return V2EquipmentHelper.getInRegion(host.getPlayer(), BodyRegionV2.MOUTH);
|
||||
return V2EquipmentHelper.getInRegion(
|
||||
host.getPlayer(),
|
||||
BodyRegionV2.MOUTH
|
||||
);
|
||||
}
|
||||
|
||||
public ItemStack getCurrentBlindfold() {
|
||||
return V2EquipmentHelper.getInRegion(host.getPlayer(), BodyRegionV2.EYES);
|
||||
return V2EquipmentHelper.getInRegion(
|
||||
host.getPlayer(),
|
||||
BodyRegionV2.EYES
|
||||
);
|
||||
}
|
||||
|
||||
public ItemStack getCurrentEarplugs() {
|
||||
return V2EquipmentHelper.getInRegion(host.getPlayer(), BodyRegionV2.EARS);
|
||||
return V2EquipmentHelper.getInRegion(
|
||||
host.getPlayer(),
|
||||
BodyRegionV2.EARS
|
||||
);
|
||||
}
|
||||
|
||||
public ItemStack getCurrentClothes() {
|
||||
return V2EquipmentHelper.getInRegion(host.getPlayer(), BodyRegionV2.TORSO);
|
||||
return V2EquipmentHelper.getInRegion(
|
||||
host.getPlayer(),
|
||||
BodyRegionV2.TORSO
|
||||
);
|
||||
}
|
||||
|
||||
public ItemStack getCurrentMittens() {
|
||||
return V2EquipmentHelper.getInRegion(host.getPlayer(), BodyRegionV2.HANDS);
|
||||
return V2EquipmentHelper.getInRegion(
|
||||
host.getPlayer(),
|
||||
BodyRegionV2.HANDS
|
||||
);
|
||||
}
|
||||
|
||||
public ItemStack getCurrentCollar() {
|
||||
return V2EquipmentHelper.getInRegion(host.getPlayer(), BodyRegionV2.NECK);
|
||||
return V2EquipmentHelper.getInRegion(
|
||||
host.getPlayer(),
|
||||
BodyRegionV2.NECK
|
||||
);
|
||||
}
|
||||
|
||||
// ========== Player Information ==========
|
||||
@@ -97,7 +118,6 @@ public class PlayerDataRetrieval {
|
||||
|
||||
/**
|
||||
* Check if player has clothes with small arms flag.
|
||||
* TODO Phase 14+: Check clothes NBT for small arms flag
|
||||
*/
|
||||
public boolean hasClothesWithSmallArms() {
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user