This commit is contained in:
simibubi 2023-05-17 12:47:55 +02:00
parent 852996cea9
commit eeeb2f4509

View file

@ -35,6 +35,8 @@ public class SchematicPlacePacket extends SimplePacketBase {
ServerPlayer player = context.getSender();
if (player == null)
return;
if (!player.isCreative())
return;
Level world = player.getLevel();
SchematicPrinter printer = new SchematicPrinter();