Skip to content

Commit 18e8724

Browse files
committed
Repackage
1 parent 9ce2c39 commit 18e8724

File tree

10 files changed

+11
-10
lines changed

10 files changed

+11
-10
lines changed

src/main/java/net/earthcomputer/clientcommands/EventManager.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
import net.earthcomputer.clientcommands.ToolDamageManager.ToolDamagedEvent;
77
import net.earthcomputer.clientcommands.command.CommandRelog;
8+
import net.earthcomputer.clientcommands.network.PacketEvent;
89
import net.minecraft.client.Minecraft;
910
import net.minecraft.network.EnumPacketDirection;
1011
import net.minecraft.network.NetworkManager;

src/main/java/net/earthcomputer/clientcommands/command/CommandCClear.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.Collections;
44
import java.util.List;
55

6-
import net.earthcomputer.clientcommands.CreativeInventoryListener;
6+
import net.earthcomputer.clientcommands.network.CreativeInventoryListener;
77
import net.minecraft.client.Minecraft;
88
import net.minecraft.command.CommandException;
99
import net.minecraft.command.ICommandSender;

src/main/java/net/earthcomputer/clientcommands/command/CommandCGive.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.Collections;
44
import java.util.List;
55

6-
import net.earthcomputer.clientcommands.CreativeInventoryListener;
6+
import net.earthcomputer.clientcommands.network.CreativeInventoryListener;
77
import net.minecraft.command.CommandException;
88
import net.minecraft.command.ICommandSender;
99
import net.minecraft.command.WrongUsageException;

src/main/java/net/earthcomputer/clientcommands/command/CommandFindItem.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
import java.util.List;
44

5-
import net.earthcomputer.clientcommands.DelegatingContainer;
6-
import net.earthcomputer.clientcommands.Ptr;
75
import net.earthcomputer.clientcommands.task.GuiBlocker;
86
import net.earthcomputer.clientcommands.task.LongTask;
97
import net.earthcomputer.clientcommands.task.TaskManager;
8+
import net.earthcomputer.clientcommands.util.DelegatingContainer;
9+
import net.earthcomputer.clientcommands.util.Ptr;
1010
import net.minecraft.block.Block;
1111
import net.minecraft.block.BlockChest;
1212
import net.minecraft.client.Minecraft;

src/main/java/net/earthcomputer/clientcommands/core/ProxyTransformer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public byte[] transform(String name, String transformedName, byte[] basicClass)
4040
for (FieldNode field : node.fields) {
4141
if (field.visibleAnnotations != null) {
4242
for (AnnotationNode ann : field.visibleAnnotations) {
43-
if ("Lnet/earthcomputer/clientcommands/Proxy;".equals(ann.desc)) {
43+
if ("Lnet/earthcomputer/clientcommands/util/Proxy;".equals(ann.desc)) {
4444
if (proxyField != null) {
4545
throw new AssertionError("There should not be more than one proxy field");
4646
}

src/main/java/net/earthcomputer/clientcommands/CreativeInventoryListener.java renamed to src/main/java/net/earthcomputer/clientcommands/network/CreativeInventoryListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.earthcomputer.clientcommands;
1+
package net.earthcomputer.clientcommands.network;
22

33
import net.minecraft.client.Minecraft;
44
import net.minecraft.client.multiplayer.PlayerControllerMP;

src/main/java/net/earthcomputer/clientcommands/PacketEvent.java renamed to src/main/java/net/earthcomputer/clientcommands/network/PacketEvent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.earthcomputer.clientcommands;
1+
package net.earthcomputer.clientcommands.network;
22

33
import net.minecraft.network.Packet;
44
import net.minecraftforge.fml.common.eventhandler.Cancelable;

src/main/java/net/earthcomputer/clientcommands/DelegatingContainer.java renamed to src/main/java/net/earthcomputer/clientcommands/util/DelegatingContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.earthcomputer.clientcommands;
1+
package net.earthcomputer.clientcommands.util;
22

33
import net.minecraft.entity.player.EntityPlayer;
44
import net.minecraft.inventory.Container;

src/main/java/net/earthcomputer/clientcommands/Proxy.java renamed to src/main/java/net/earthcomputer/clientcommands/util/Proxy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.earthcomputer.clientcommands;
1+
package net.earthcomputer.clientcommands.util;
22

33
import java.lang.annotation.ElementType;
44
import java.lang.annotation.Retention;

src/main/java/net/earthcomputer/clientcommands/Ptr.java renamed to src/main/java/net/earthcomputer/clientcommands/util/Ptr.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package net.earthcomputer.clientcommands;
1+
package net.earthcomputer.clientcommands.util;
22

33
public final class Ptr<T> {
44

0 commit comments

Comments
 (0)