Skip to content

Commit

Permalink
refactor(mixin): move MixinCommandSourceStack to common
Browse files Browse the repository at this point in the history
WakelessSloth56 committed Mar 28, 2022

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 70ffdf6 commit 69bbc74
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -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;

Original file line number Diff line number Diff line change
@@ -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;
Original file line number Diff line number Diff line change
@@ -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;
2 changes: 1 addition & 1 deletion src/main/resources/arnicalib.mixin.json
Original file line number Diff line number Diff line change
@@ -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"
],

0 comments on commit 69bbc74

Please sign in to comment.