File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
common/src/main/kotlin/dev/chasem/cobblemonextras/commands Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package dev.chasem.cobblemonextras.commands
33import com.cobblemon.mod.common.Cobblemon
44import com.cobblemon.mod.common.Cobblemon.storage
55import com.cobblemon.mod.common.api.storage.NoPokemonStoreException
6- import com.cobblemon.mod.common.net.messages.client.storage.pc.SetPCBoxPokemonPacket
6+ import com.cobblemon.mod.common.net.messages.client.storage.pc.SetPCBoxPacket
77import com.mojang.brigadier.CommandDispatcher
88import com.mojang.brigadier.arguments.IntegerArgumentType
99import com.mojang.brigadier.context.CommandContext
@@ -47,7 +47,7 @@ class CompDelete {
4747 ctx.source.sendSystemMessage(Component .literal(" No Pokemon found in slot." ).withStyle(ChatFormatting .RED ))
4848 }
4949 box[slotNum] = null
50- SetPCBoxPokemonPacket (box).sendToPlayer(otherPlayer)
50+ SetPCBoxPacket (box).sendToPlayer(otherPlayer)
5151 }
5252 } catch (e: NoPokemonStoreException ) {
5353 throw RuntimeException (e)
You can’t perform that action at this time.
0 commit comments