Skip to content

Commit

Permalink
refactor(mixin): move MixinCommandSourceStack to common
Browse files Browse the repository at this point in the history
  • Loading branch information
WakelessSloth56 committed Mar 28, 2022
1 parent 70ffdf6 commit 69bbc74
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
@@ -1,4 +1,4 @@
package org.auioc.mods.arnicalib.api.mixin.server;
package org.auioc.mods.arnicalib.api.mixin.common;

import net.minecraft.commands.CommandSource;

Expand Down
@@ -1,6 +1,6 @@
package org.auioc.mods.arnicalib.mixin.server;
package org.auioc.mods.arnicalib.mixin.common;

import org.auioc.mods.arnicalib.api.mixin.server.IMixinCommandSourceStack;
import org.auioc.mods.arnicalib.api.mixin.common.IMixinCommandSourceStack;
import org.spongepowered.asm.mixin.Final;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
Expand Down
Expand Up @@ -12,7 +12,7 @@
import com.mojang.brigadier.exceptions.CommandSyntaxException;
import com.mojang.brigadier.exceptions.SimpleCommandExceptionType;
import com.mojang.brigadier.tree.LiteralCommandNode;
import org.auioc.mods.arnicalib.api.mixin.server.IMixinCommandSourceStack;
import org.auioc.mods.arnicalib.api.mixin.common.IMixinCommandSourceStack;
import net.minecraft.client.player.LocalPlayer;
import net.minecraft.commands.CommandSource;
import net.minecraft.commands.CommandSourceStack;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/arnicalib.mixin.json
Expand Up @@ -5,11 +5,11 @@
"mixins": [
"common.MixinPistonBaseBlock",
"common.MixinMobEffectInstance",
"common.MixinCommandSourceStack",
"server.MixinServerLifecycleHooks",
"server.MixinLootContext",
"server.MixinServerPlayer",
"server.MixinLivingEntity",
"server.MixinCommandSourceStack",
"server.MixinEyeOfEnder",
"server.MixinEnderEyeItem"
],
Expand Down

0 comments on commit 69bbc74

Please sign in to comment.