Rebranded to avoid confusion with a similar mod
parent
a83c812f94
commit
2dab2feefa
|
@ -1,4 +1,4 @@
|
|||
# BetterBeta
|
||||
# Fianl Beta
|
||||
|
||||
A (Cursed) Fabric mod for Minecraft Beta 1.7.3 that adds some quality of life changes and fixes some issues.
|
||||
|
||||
|
@ -8,9 +8,9 @@ You can change what fixes get applied using the config found in one of the follo
|
|||
|
||||
| OS | Location |
|
||||
|-------|----------|
|
||||
| Windows | %appdata%/.minecraft/config/betterbeta.toml |
|
||||
| Linux | ~/.minecraft/config/betterbeta.toml |
|
||||
| macOS | ~/Library/Application Support/minecraft/config/betterbeta.toml |
|
||||
| Windows | %appdata%/.minecraft/config/finalbeta.toml |
|
||||
| Linux | ~/.minecraft/config/finalbeta.toml |
|
||||
| macOS | ~/Library/Application Support/minecraft/config/finalbeta.toml |
|
||||
|
||||
Note that if you're using something like MultiMC or any of its derivates the folder will be in a different location, in those instances simply right click on your profile and click on "Folder", this will open the location where you can find the .minecraft folder and follow the path from above.
|
||||
|
||||
|
|
|
@ -115,7 +115,7 @@ jar {
|
|||
|
||||
shadowJar {
|
||||
configurations = [project.configurations.shadow]
|
||||
relocate "com.electronwill.nightconfig", "xyz.pixelatedw.betterbeta.com.electronwill.nightconfig"
|
||||
relocate "com.electronwill.nightconfig", "xyz.pixelatedw.finalbeta.com.electronwill.nightconfig"
|
||||
archiveClassifier.set("dev")
|
||||
}
|
||||
|
||||
|
|
|
@ -10,5 +10,5 @@ org.gradle.jvmargs=-Xmx1G
|
|||
|
||||
# Mod Properties
|
||||
mod_version = 1.0.0
|
||||
maven_group = xyz.pixelatedw.betterbeta
|
||||
archives_base_name = betterbeta
|
||||
maven_group = xyz.pixelatedw.finalbeta
|
||||
archives_base_name = finalbeta
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta;
|
||||
package xyz.pixelatedw.finalbeta;
|
||||
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta;
|
||||
package xyz.pixelatedw.finalbeta;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
@ -9,7 +9,7 @@ import com.google.common.base.Strings;
|
|||
|
||||
public class ModConfig {
|
||||
|
||||
private static final String CONFIG_PATH = "config/betterbeta.toml";
|
||||
private static final String CONFIG_PATH = "config/finalbeta.toml";
|
||||
private static final List<Option> OPTIONS = new ArrayList<>();
|
||||
|
||||
private CommentedFileConfig fileConfig;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta;
|
||||
package xyz.pixelatedw.finalbeta;
|
||||
|
||||
import java.lang.management.ManagementFactory;
|
||||
import java.util.Random;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
|
@ -11,7 +11,7 @@ import net.minecraft.client.render.entity.BipedEntityRenderer;
|
|||
import net.minecraft.entity.LivingEntity;
|
||||
import net.minecraft.item.ItemInstance;
|
||||
import net.minecraft.item.ItemType;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(BipedEntityRenderer.class)
|
||||
public class BipedRendererMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
|
@ -7,7 +7,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
|||
|
||||
import net.minecraft.item.ItemType;
|
||||
import net.minecraft.item.tool.BowItem;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(BowItem.class)
|
||||
public class BowItemMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
|
@ -11,8 +11,8 @@ import net.minecraft.container.ChestContainer;
|
|||
import net.minecraft.entity.player.ClientPlayer;
|
||||
import net.minecraft.entity.player.Player;
|
||||
import net.minecraft.inventory.Inventory;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.betterbeta.WyHelper;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.WyHelper;
|
||||
|
||||
@Mixin(ClientPlayer.class)
|
||||
public class ClientPlayerMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.Constant;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
|
@ -7,7 +7,7 @@ import org.spongepowered.asm.mixin.injection.invoke.arg.Args;
|
|||
|
||||
import net.minecraft.entity.FishHook;
|
||||
import net.minecraft.entity.ItemEntity;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(FishHook.class)
|
||||
public class FishHookMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
|
@ -10,7 +10,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
|||
|
||||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.item.ItemInstance;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(ItemInstance.class)
|
||||
public class ItemInstanceMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.Shadow;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
|
@ -13,8 +13,8 @@ import net.minecraft.entity.projectile.Arrow;
|
|||
import net.minecraft.tile.RailTile;
|
||||
import net.minecraft.util.maths.Box;
|
||||
import net.minecraft.util.maths.MathsHelper;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.betterbeta.WyHelper;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.WyHelper;
|
||||
|
||||
@Mixin(Minecart.class)
|
||||
public class MinecartMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.objectweb.asm.Opcodes;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
|
@ -8,7 +8,7 @@ import org.spongepowered.asm.mixin.injection.Inject;
|
|||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||
|
||||
import net.minecraft.client.Minecraft;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(Minecraft.class)
|
||||
public class MinecraftMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.lwjgl.opengl.GL11;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
|
@ -14,7 +14,7 @@ import net.minecraft.entity.player.Player;
|
|||
import net.minecraft.item.ItemInstance;
|
||||
import net.minecraft.item.ItemType;
|
||||
import net.minecraft.item.armour.ArmourItem;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(PlayerRenderer.class)
|
||||
public class PlayerRendererMixin extends LivingEntityRendererMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.Constant;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.Shadow;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
|
@ -8,7 +8,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
|||
import net.minecraft.client.render.entity.model.BipedModel;
|
||||
import net.minecraft.client.render.entity.model.SkeletonModel;
|
||||
import net.minecraft.client.render.entity.model.ZombieModel;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(ZombieModel.class)
|
||||
public class SkeletonModelMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
|
@ -10,7 +10,7 @@ import net.minecraft.item.ItemInstance;
|
|||
import net.minecraft.level.Level;
|
||||
import net.minecraft.tile.StairsTile;
|
||||
import net.minecraft.tile.Tile;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(StairsTile.class)
|
||||
public class StairsTileMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.injection.At;
|
||||
|
@ -9,7 +9,7 @@ import net.minecraft.level.Level;
|
|||
import net.minecraft.tile.SugarCane;
|
||||
import net.minecraft.tile.Tile;
|
||||
import net.minecraft.tile.material.Material;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(SugarCane.class)
|
||||
public class SugarCaneMixin {
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.Shadow;
|
|
@ -1,4 +1,4 @@
|
|||
package xyz.pixelatedw.betterbeta.mixin;
|
||||
package xyz.pixelatedw.finalbeta.mixin;
|
||||
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.Shadow;
|
||||
|
@ -11,7 +11,7 @@ import net.minecraft.item.tool.PickaxeItem;
|
|||
import net.minecraft.item.tool.ToolItem;
|
||||
import net.minecraft.item.tool.ToolMaterial;
|
||||
import net.minecraft.tile.Tile;
|
||||
import xyz.pixelatedw.betterbeta.ModConfig;
|
||||
import xyz.pixelatedw.finalbeta.ModConfig;
|
||||
|
||||
@Mixin(ToolItem.class)
|
||||
public class ToolItemMixin {
|
Before Width: | Height: | Size: 453 B After Width: | Height: | Size: 453 B |
|
@ -1,21 +1,21 @@
|
|||
{
|
||||
"schemaVersion": 1,
|
||||
"id": "betterbeta",
|
||||
"id": "finalbeta",
|
||||
"version": "1.0.0",
|
||||
|
||||
"name": "BetterBeta",
|
||||
"name": "Final Beta",
|
||||
"description": "A (Cursed) Fabric mod that adds some quality of life changes and fixes some common issues",
|
||||
"authors": ["Wynd"],
|
||||
"contact": {},
|
||||
|
||||
"license": "All Rights Reserved",
|
||||
"icon": "assets/betterbeta/icon.png",
|
||||
"icon": "assets/finalbeta/icon.png",
|
||||
|
||||
"environment": "*",
|
||||
"entrypoints": {
|
||||
"init": ["xyz.pixelatedw.betterbeta.MainMod"]
|
||||
"init": ["xyz.pixelatedw.finalbeta.MainMod"]
|
||||
},
|
||||
"mixins": ["betterbeta.mixins.json"],
|
||||
"mixins": ["finalbeta.mixins.json"],
|
||||
|
||||
"depends": {
|
||||
"minecraft": "1.0.0-beta.7.3"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"required": true,
|
||||
"package": "xyz.pixelatedw.betterbeta.mixin",
|
||||
"package": "xyz.pixelatedw.finalbeta.mixin",
|
||||
"compatibilityLevel": "JAVA_8",
|
||||
"mixins": [],
|
||||
"client": [
|
Loading…
Reference in New Issue