aboutsummaryrefslogtreecommitdiff
path: root/spark-fabric/src/main/java/me/lucko/spark/fabric/mixin
diff options
context:
space:
mode:
authorLuck <git@lucko.me>2022-06-09 21:21:29 +0100
committerLuck <git@lucko.me>2022-06-09 21:21:29 +0100
commit0ac8713eaaefe7336db2e0369bbe547dc6c0da7d (patch)
tree07293873c21d89ef4b2035be56c00d2efa624a45 /spark-fabric/src/main/java/me/lucko/spark/fabric/mixin
parentf051a29659c659d9b491bced1acf3cac59074f88 (diff)
downloadspark-0ac8713eaaefe7336db2e0369bbe547dc6c0da7d.tar.gz
spark-0ac8713eaaefe7336db2e0369bbe547dc6c0da7d.tar.bz2
spark-0ac8713eaaefe7336db2e0369bbe547dc6c0da7d.zip
1.19
Diffstat (limited to 'spark-fabric/src/main/java/me/lucko/spark/fabric/mixin')
-rw-r--r--spark-fabric/src/main/java/me/lucko/spark/fabric/mixin/ClientPlayerEntityMixin.java52
1 files changed, 0 insertions, 52 deletions
diff --git a/spark-fabric/src/main/java/me/lucko/spark/fabric/mixin/ClientPlayerEntityMixin.java b/spark-fabric/src/main/java/me/lucko/spark/fabric/mixin/ClientPlayerEntityMixin.java
deleted file mode 100644
index 495b213..0000000
--- a/spark-fabric/src/main/java/me/lucko/spark/fabric/mixin/ClientPlayerEntityMixin.java
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * This file is part of spark.
- *
- * Copyright (c) lucko (Luck) <luck@lucko.me>
- * Copyright (c) contributors
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-package me.lucko.spark.fabric.mixin;
-
-import com.mojang.authlib.GameProfile;
-
-import me.lucko.spark.fabric.FabricSparkGameHooks;
-
-import net.minecraft.client.network.AbstractClientPlayerEntity;
-import net.minecraft.client.network.ClientPlayerEntity;
-import net.minecraft.client.world.ClientWorld;
-
-import org.spongepowered.asm.mixin.Mixin;
-import org.spongepowered.asm.mixin.injection.At;
-import org.spongepowered.asm.mixin.injection.Inject;
-import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
-import org.spongepowered.asm.mixin.injection.callback.LocalCapture;
-
-@Mixin(ClientPlayerEntity.class)
-public abstract class ClientPlayerEntityMixin extends AbstractClientPlayerEntity {
-
- public ClientPlayerEntityMixin(ClientWorld clientWorld_1, GameProfile gameProfile_1) {
- super(clientWorld_1, gameProfile_1);
- }
-
- @Inject(method = "sendChatMessage(Ljava/lang/String;)V", at = @At("HEAD"),
- locals = LocalCapture.CAPTURE_FAILHARD,
- cancellable = true)
- public void onSendChatMessage(String message, CallbackInfo ci) {
- if (FabricSparkGameHooks.INSTANCE.tryProcessChat(message)) {
- ci.cancel();
- }
- }
-}