Skip to content

Commit 0431f02

Browse files
committed
....Forgot to remove debug including hardcoding of battle logging mute off for testing.
1 parent 9ee2c96 commit 0431f02

3 files changed

Lines changed: 3 additions & 9 deletions

File tree

common/src/main/java/generations/gg/generations/core/generationscore/common/mixin/PokemonBattleMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public abstract class PokemonBattleMixin {
2222

2323
@Inject(method = "<init>", at = @At("TAIL"), remap = false)
2424
private void onConstruct(BattleFormat format, BattleSide side1, BattleSide side2, CallbackInfo ci) {
25-
this.setMute(false);
25+
// this.setMute(false);
2626
}
2727

2828
@Inject(method = "end", at = @At("TAIL"), remap = false)

common/src/main/java/generations/gg/generations/core/generationscore/common/world/container/CookingPotContainer.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,17 +77,12 @@ public boolean stillValid(@NotNull Player playerIn) {
7777
// Store NBT for debugging before we move it
7878
CompoundTag originalNBT = slotStack.hasTag() ? slotStack.getTag().copy() : null;
7979

80-
// Debug Log: Initial State
81-
System.out.println("[DEBUG] Shift-Click Event:");
82-
System.out.println(" - Clicked Slot Index: " + index);
83-
System.out.println(" - Original Stack: " + originalStack);
84-
System.out.println(" - Original NBT: " + (originalNBT != null ? originalNBT : "None"));
8580

8681
boolean moved = false;
8782

8883
// If the slot is the crafting output (slot 13), ensure crafting logic is applied before moving
8984
if (index == 13) {
90-
System.out.println(" - Crafting Slot Detected! Running `onTake()` before moving.");
85+
// System.out.println(" - Crafting Slot Detected! Running `onTake()` before moving.");
9186
slot.onTake(playerIn, slotStack);
9287
}
9388

common/src/main/java/generations/gg/generations/core/generationscore/common/world/level/block/entities/shrines/InteractShrineBlockEntity.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ public String getVariant() {
3030
public void triggerCountDown() {
3131
if(getBlockState().getBlock() instanceof InteractShrineBlock<?> shrine) {
3232
if(shrine.waitToDeactivateTime() > 0) {
33-
System.out.println("Activating countdown");
3433

3534
this.countdown = shrine.waitToDeactivateTime();
3635
}
@@ -40,7 +39,7 @@ public void triggerCountDown() {
4039
protected void tick() {
4140
if(getBlockState().getBlock() instanceof InteractShrineBlock<?> shrine) {
4241
if(this.countdown > 0) {
43-
System.out.println(getClass().getSimpleName() + ": " + countdown);
42+
// System.out.println(getClass().getSimpleName() + ": " + countdown);
4443

4544
this.countdown--;
4645

0 commit comments

Comments
 (0)