-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Huge refactor + update to Minecraft 1.21.3
- Loading branch information
Showing
55 changed files
with
940 additions
and
1,115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,32 @@ | ||
# Done to increase the memory available to gradle. | ||
org.gradle.jvmargs=-Xmx1G | ||
# Fabric Properties | ||
# check these on https://fabricmc.net/develop/ | ||
minecraft_version=1.21 | ||
yarn_mappings=1.21+build.9 | ||
loader_version=0.15.11 | ||
org.gradle.parallel=true | ||
|
||
# Mod Properties | ||
mod_version=1.6 | ||
maven_group=dev.xpple | ||
archives_base_name=seedmapper | ||
|
||
# Dependencies | ||
fabric_api_version=0.100.7+1.21 | ||
# Minecraft properties | ||
minecraft_version=1.21.3 | ||
|
||
clientarguments_version=1.9 | ||
# Fabric Properties | ||
# check these on https://fabricmc.net/develop | ||
# https://ldtteam.jfrog.io/ui/native/parchmentmc-public/org/parchmentmc/data/ | ||
fabric_api_version=0.107.0+1.21.3 | ||
parchment_mappings=parchment-1.21:2024.07.28@zip | ||
fabric_loader_version=0.16.9 | ||
|
||
betterconfig_version=1.3 | ||
# Library dependencies | ||
betterconfig_version=2.1.2 | ||
clientarguments_version=1.10.1 | ||
|
||
mc_math_version=851e9d0577dfdca50154e98f1d334bd31c641326 | ||
mc_seed_version=55f6242001f7eb4226df4ed0d023f1838a54a99d | ||
mc_core_version=927e5e1fd4bbb6f8219473ef6dc0c1bb569a60e9 | ||
mc_core_version=b84ff1c38be399eda096dbde2819258c62f81275 | ||
mc_noise_version=dbab3996ea3abff5dd420db53c31d5498afd2fe5 | ||
mc_biome_version=17af8cb1110fdc983b7cb2b887d1fb2060e23ee3 | ||
mc_terrain_version=a03e440ec5b282e399382f2cc5ad0db91b438d2e | ||
mc_feature_version=7a14acbf03225421750b8527c161186fecac71f7 | ||
mc_feature_version=1eedc2e2a0d1959f7f42915d557d78564985c4b4 | ||
|
||
mc_reversal_version=75aa6ce47a9f53a1aa212765e9830e08f6c86299 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 0 additions & 52 deletions
52
src/main/java/dev/xpple/seedmapper/command/ClientCommand.java
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
src/main/java/dev/xpple/seedmapper/command/CommandExceptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package dev.xpple.seedmapper.command; | ||
|
||
import com.mojang.brigadier.exceptions.DynamicCommandExceptionType; | ||
import com.mojang.brigadier.exceptions.SimpleCommandExceptionType; | ||
import net.minecraft.network.chat.Component; | ||
|
||
public final class CommandExceptions { | ||
|
||
private CommandExceptions() { | ||
} | ||
|
||
public static final DynamicCommandExceptionType UNKNOWN_DIMENSION_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.unknownDimension", arg)); | ||
public static final DynamicCommandExceptionType UNKNOWN_VERSION_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.unknownVersion", arg)); | ||
public static final DynamicCommandExceptionType UNKNOWN_BIOME_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.unknownBiome", arg)); | ||
public static final DynamicCommandExceptionType UNKNOWN_STRUCTURE_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.unknownStructure", arg)); | ||
public static final DynamicCommandExceptionType UNKNOWN_DECORATOR_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.unknownDecorator", arg)); | ||
public static final DynamicCommandExceptionType UNKNOWN_BLOCK_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.unknownBlock", arg)); | ||
public static final DynamicCommandExceptionType UNKNOWN_ITEM_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.unknownItem", arg)); | ||
public static final DynamicCommandExceptionType UNKNOWN_LOOT_ITEM_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.unknownLootItem", arg)); | ||
public static final SimpleCommandExceptionType NO_SEED_AVAILABLE_EXCEPTION = new SimpleCommandExceptionType(Component.translatable("commands.exceptions.noSeedAvailable")); | ||
public static final DynamicCommandExceptionType NO_BIOME_FOUND_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.noBiomeFound", arg)); | ||
public static final DynamicCommandExceptionType NO_STRUCTURE_FOUND_EXCEPTION = new DynamicCommandExceptionType(arg -> Component.translatable("commands.exceptions.noStructureFound", arg)); | ||
public static final SimpleCommandExceptionType INVALID_DIMENSION_EXCEPTION = new SimpleCommandExceptionType(Component.translatable("commands.exceptions.invalidDimension")); | ||
} |
Oops, something went wrong.