Skip to content

Commit

Permalink
Fix fabric server not starting up
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
Gaz492 committed Aug 1, 2023
1 parent 503c5e8 commit 8c1fa67
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to this project will be documented in this file.

## [4.0.1]
- Fix fabric server not being able to start up

## [4.0.0]

- Moved over to MultiLoader
Expand Down
1 change: 0 additions & 1 deletion common/src/main/resources/bcc.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"ServerDataMixin"
],
"server": [
"MinecraftServerMixinn"
],
"injectors": {
"defaultRequire": 1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;

@Mixin(MinecraftServer.class)
public class MinecraftServerMixinn {
public class MinecraftServerMixin {
@Inject(method = "getStatusJson", at = @At("RETURN"), cancellable = true, remap = false)
public void modifyStatusJson(CallbackInfoReturnable<String> cir) {
JsonElement jsonElement = JsonParser.parseString(cir.getReturnValue());
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Project
mod_version=4.0.0
mod_version=4.0.1
group=dev.wuffs.bcc

# Common
Expand Down

0 comments on commit 8c1fa67

Please sign in to comment.