Skip to content

Commit

Permalink
Finished moving to Mojang Mappings, changed links in fabric.mod.json
Browse files Browse the repository at this point in the history
  • Loading branch information
Permdog99 committed Nov 22, 2024
1 parent 5c27d94 commit 596aabf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package permdog99.steam_integration.mixin.client;

import net.minecraft.client.MinecraftClient;
import net.minecraft.client.Minecraft;
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(MinecraftClient.class)
@Mixin(Minecraft.class)
public class ExampleClientMixin {
@Inject(at = @At("HEAD"), method = "run")
private void run(CallbackInfo info) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

@Mixin(MinecraftServer.class)
public class ExampleMixin {
@Inject(at = @At("HEAD"), method = "loadWorld")
@Inject(at = @At("HEAD"), method = "loadLevel")
private void init(CallbackInfo info) {
// This code is injected into the start of MinecraftServer.loadWorld()V
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"Permdog99"
],
"contact": {
"homepage": "https://modrinth.com/",
"homepage": "https://modrinth.com/mod/steam-integration",
"sources": "https://github.com/Permdog99/MC-Steam-Integration"
},
"license": "PolyForm Shield License 1.0.0",
Expand Down

0 comments on commit 596aabf

Please sign in to comment.