Skip to content

Commit

Permalink
Updated to BTA 7.3-pre4!
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSVK12 committed Jan 12, 2025
1 parent b42bf10 commit 667d8a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
org.gradle.jvmargs=-Xmx2G

# BTA
bta_version=7.3-pre3
bta_version=7.3-pre4
bta_channel=prerelease

# Loader
Expand Down
7 changes: 4 additions & 3 deletions src/main/java/turniplabs/examplemod/ExampleMod.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import turniplabs.halplibe.util.ClientStartEntrypoint;
import turniplabs.halplibe.util.GameStartEntrypoint;
import turniplabs.halplibe.util.RecipeEntrypoint;


public class ExampleMod implements ModInitializer, RecipeEntrypoint, ClientStartEntrypoint {
public class ExampleMod implements ModInitializer, RecipeEntrypoint, GameStartEntrypoint {
public static final String MOD_ID = "examplemod";
public static final Logger LOGGER = LoggerFactory.getLogger(MOD_ID);
@Override
Expand All @@ -26,12 +27,12 @@ public void initNamespaces() {
}

@Override
public void beforeClientStart() {
public void beforeGameStart() {

}

@Override
public void afterClientStart() {
public void afterGameStart() {

}
}

0 comments on commit 667d8a0

Please sign in to comment.