Skip to content

Commit

Permalink
chore: 1.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Slexom committed Feb 28, 2022
1 parent ed80f4b commit 6c0a2a3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'fabric-loom' version '0.10.+'
id 'fabric-loom' version '0.11.+'
id 'maven-publish'
}

Expand Down
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.18.1
yarn_mappings=1.18.1+build.12
loader_version=0.12.12
minecraft_version=1.18.2
yarn_mappings=1.18.2+build.1
loader_version=0.13.3

# Mod Properties
mod_version=1.0.3
Expand All @@ -14,4 +14,4 @@ archives_base_name=animal_feeding_trough

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
fabric_version=0.45.0+1.18
fabric_version=0.47.8+1.18.2
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
import net.minecraft.sound.BlockSoundGroup;
import net.minecraft.util.Identifier;
import net.minecraft.util.registry.Registry;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import slexom.vf.animal_feeding_trough.block.FeedingTroughBlock;
import slexom.vf.animal_feeding_trough.block.entity.FeedingTroughBlockEntity;
import slexom.vf.animal_feeding_trough.screen.FeedingTroughScreenHandler;

public class AnimalFeedingTroughMod implements ModInitializer {

public static final Logger LOGGER = LogManager.getLogger("Animal Feeding Trough");
public static final Logger LOGGER = LoggerFactory.getLogger("Animal Feeding Trough");
public static final String MOD_ID = "animal_feeding_trough";
public static Block FEEDING_TROUGH_BLOCK;
public static BlockEntityType<FeedingTroughBlockEntity> FEEDING_TROUGH_BLOCK_ENTITY;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/animal_feeding_trough.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"required": true,
"minVersion": "0.8",
"package": "slexom.vf.animal_feeding_trough.mixin",
"compatibilityLevel": "JAVA_16",
"compatibilityLevel": "JAVA_17",
"mixins": [
"AnimalEntityMixin",
"GoalSelectorAccessor",
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"animal_feeding_trough.mixins.json"
],
"depends": {
"fabricloader": ">=0.11.3",
"fabricloader": ">=0.13.3",
"fabric": "*",
"minecraft": "1.18.x",
"java": ">=16"
"java": ">=17"
},
"accessWidener": "animal_feeding_trough.accesswidener"
}

0 comments on commit 6c0a2a3

Please sign in to comment.