This commit is contained in:
Saturn5Vfive 2022-03-29 12:48:08 -05:00
parent 5df5da67a8
commit 7f9d0abfb1

View file

@ -5,10 +5,17 @@
package net.shadow.client.feature.module.impl.crash;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.nbt.NbtCompound;
import net.minecraft.nbt.NbtList;
import net.minecraft.nbt.NbtString;
import net.minecraft.network.packet.c2s.play.BookUpdateC2SPacket;
import net.minecraft.network.packet.c2s.play.CreativeInventoryActionC2SPacket;
import net.shadow.client.ShadowMain;
import net.shadow.client.feature.module.Module;
import net.shadow.client.feature.module.ModuleType;
import net.shadow.client.helper.util.Utils;
import java.util.ArrayList;
import java.util.List;
@ -16,6 +23,8 @@ import java.util.Optional;
public class StreamCrash extends Module {
int slot = 0;
public StreamCrash() {
super("BookInflater", "Writes a book thats nbt value is 3x bigger than normal", ModuleType.CRASH);
}