mirror of
https://github.com/ViaVersion/ViaFabric.git
synced 2024-12-21 16:17:37 +01:00
Ensure ViaManager is destroyed on the server at graceful shutdown (#328)
Fixes #327
This commit is contained in:
parent
a7d5601d7b
commit
9454942af6
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1122.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stopRunning", at = @At("TAIL"))
|
||||
private void onStopRunning(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -54,6 +54,7 @@
|
||||
"mixins.viafabric1122.address.json",
|
||||
"mixins.viafabric1122.gui.json",
|
||||
"mixins.viafabric1122.debug.json",
|
||||
"mixins.viafabric1122.pipeline.json"
|
||||
"mixins.viafabric1122.pipeline.json",
|
||||
"mixins.viafabric1122.shutdown.json"
|
||||
]
|
||||
}
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"package": "com.viaversion.fabric.mc1122.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1144.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stop", at = @At("TAIL"))
|
||||
private void onStop(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -69,7 +69,8 @@
|
||||
"mixins.viafabric1144.address.json",
|
||||
"mixins.viafabric1144.gui.json",
|
||||
"mixins.viafabric1144.debug.json",
|
||||
"mixins.viafabric1144.pipeline.json"
|
||||
"mixins.viafabric1144.pipeline.json",
|
||||
"mixins.viafabric1144.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"package": "com.viaversion.fabric.mc1144.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1165.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stop", at = @At("TAIL"))
|
||||
private void onStop(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -65,7 +65,8 @@
|
||||
"mixins.viafabric1165.address.json",
|
||||
"mixins.viafabric1165.gui.json",
|
||||
"mixins.viafabric1165.debug.json",
|
||||
"mixins.viafabric1165.pipeline.json"
|
||||
"mixins.viafabric1165.pipeline.json",
|
||||
"mixins.viafabric1165.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"package": "com.viaversion.fabric.mc1165.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1171.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stop", at = @At("TAIL"))
|
||||
private void onStop(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -68,7 +68,8 @@
|
||||
"mixins.viafabric1171.address.json",
|
||||
"mixins.viafabric1171.gui.json",
|
||||
"mixins.viafabric1171.debug.json",
|
||||
"mixins.viafabric1171.pipeline.json"
|
||||
"mixins.viafabric1171.pipeline.json",
|
||||
"mixins.viafabric1171.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_16",
|
||||
"package": "com.viaversion.fabric.mc1171.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1182.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stop", at = @At("TAIL"))
|
||||
private void onStop(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -68,7 +68,8 @@
|
||||
"mixins.viafabric1182.address.json",
|
||||
"mixins.viafabric1182.gui.json",
|
||||
"mixins.viafabric1182.debug.json",
|
||||
"mixins.viafabric1182.pipeline.json"
|
||||
"mixins.viafabric1182.pipeline.json",
|
||||
"mixins.viafabric1182.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"package": "com.viaversion.fabric.mc1182.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1194.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stop", at = @At("TAIL"))
|
||||
private void onStop(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -68,7 +68,8 @@
|
||||
"mixins.viafabric1194.address.json",
|
||||
"mixins.viafabric1194.gui.json",
|
||||
"mixins.viafabric1194.debug.json",
|
||||
"mixins.viafabric1194.pipeline.json"
|
||||
"mixins.viafabric1194.pipeline.json",
|
||||
"mixins.viafabric1194.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"package": "com.viaversion.fabric.mc1194.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1201.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stop", at = @At("TAIL"))
|
||||
private void onStop(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -68,7 +68,8 @@
|
||||
"mixins.viafabric1201.address.json",
|
||||
"mixins.viafabric1201.gui.json",
|
||||
"mixins.viafabric1201.debug.json",
|
||||
"mixins.viafabric1201.pipeline.json"
|
||||
"mixins.viafabric1201.pipeline.json",
|
||||
"mixins.viafabric1201.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"package": "com.viaversion.fabric.mc1201.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1204.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stop", at = @At("TAIL"))
|
||||
private void onStop(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -68,7 +68,8 @@
|
||||
"mixins.viafabric1204.address.json",
|
||||
"mixins.viafabric1204.gui.json",
|
||||
"mixins.viafabric1204.debug.json",
|
||||
"mixins.viafabric1204.pipeline.json"
|
||||
"mixins.viafabric1204.pipeline.json",
|
||||
"mixins.viafabric1204.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"package": "com.viaversion.fabric.mc1204.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc1206.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stop", at = @At("TAIL"))
|
||||
private void onStop(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -68,7 +68,8 @@
|
||||
"mixins.viafabric1206.address.json",
|
||||
"mixins.viafabric1206.gui.json",
|
||||
"mixins.viafabric1206.debug.json",
|
||||
"mixins.viafabric1206.pipeline.json"
|
||||
"mixins.viafabric1206.pipeline.json",
|
||||
"mixins.viafabric1206.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_21",
|
||||
"package": "com.viaversion.fabric.mc1206.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
@ -0,0 +1,34 @@
|
||||
/*
|
||||
* This file is part of ViaFabric - https://github.com/ViaVersion/ViaFabric
|
||||
* Copyright (C) 2018-2024 ViaVersion and 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 com.viaversion.fabric.mc189.mixin.shutdown.server;
|
||||
|
||||
import com.viaversion.viaversion.ViaManagerImpl;
|
||||
import com.viaversion.viaversion.api.Via;
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
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;
|
||||
|
||||
@Mixin(MinecraftServer.class)
|
||||
public class MixinMinecraftServer {
|
||||
@Inject(method = "stopRunning", at = @At("TAIL"))
|
||||
private void onStopRunning(CallbackInfo ci) {
|
||||
((ViaManagerImpl) Via.getManager()).destroy();
|
||||
}
|
||||
}
|
@ -65,7 +65,8 @@
|
||||
"mixins.viafabric189.address.json",
|
||||
"mixins.viafabric189.gui.json",
|
||||
"mixins.viafabric189.debug.json",
|
||||
"mixins.viafabric189.pipeline.json"
|
||||
"mixins.viafabric189.pipeline.json",
|
||||
"mixins.viafabric189.shutdown.json"
|
||||
],
|
||||
"custom": {
|
||||
"modmenu": {
|
||||
|
@ -0,0 +1,13 @@
|
||||
{
|
||||
"required": true,
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"package": "com.viaversion.fabric.mc189.mixin.shutdown",
|
||||
"mixins": [
|
||||
],
|
||||
"server": [
|
||||
"server.MixinMinecraftServer"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 0
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user