Skip to content

Commit

Permalink
Fix spacing in name + bump to 4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rongmario committed Feb 23, 2024
1 parent 9ea6c21 commit 9d73437
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
modName = BetterQuestingUnofficial
modName = Better Questing Unofficial

# This is a case-sensitive string to identify your mod. Convention is to use lower case.
modId = betterquesting
Expand All @@ -7,7 +7,7 @@ modGroup = betterquesting

# Version of your mod.
# This field can be left empty if you want your mod's version to be determined by the latest git tag instead.
modVersion = 4.1.0
modVersion = 4.2.0

# Whether to use the old jar naming structure (modid-mcversion-version) instead of the new version (modid-version)
includeMCVersionJar = false
Expand All @@ -33,9 +33,9 @@ developmentEnvironmentUserName = Developer
enableModernJavaSyntax = true

# Generate a class with String fields for the mod id, name and version named with the fields below
generateGradleTokenClass = betterquesting.coreTags
gradleTokenModId = MODID
gradleTokenModName = MODNAME
generateGradleTokenClass = betterquesting.Tags
gradleTokenModId = ID
gradleTokenModName = NAME
gradleTokenVersion = VERSION

# In case your mod provides an API for other mods to implement you may declare its package here. Otherwise, you can
Expand All @@ -56,7 +56,7 @@ usesMixins = false
# Specify the package that contains all of your Mixins. You may only place Mixins in this package or the build will fail!
mixinsPackage =
# Automatically generates a mixin config json if enabled, with the name mixins.modid.json
generateMixinConfig = true
generateMixinConfig = false
# Specify the core mod entry class if you use a core mod. This class must implement IFMLLoadingPlugin!
# Example value: coreModClass = asm.FMLPlugin + modGroup = com.myname.mymodid -> com.myname.mymodid.asm.FMLPlugin
coreModClass =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public List<ResourceLocation> getRegisteredIDs() {
}

private void init() {
//register(new ResourceLocation("betterquesting", "canvas_empty"), CanvasEmpty::new, new NBTTagCompound());
//register(new ResourceLocation(ModReference.MODID, "canvas_empty"), CanvasEmpty::new, new NBTTagCompound());

NBTTagCompound refTag = new NBTTagCompound();
//refTag.setString("texture", PresetTexture.PANEL_MAIN.getKey().toString());
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/betterquesting/core/ModReference.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package betterquesting.core;

import betterquesting.Tags;

public class ModReference {
public static final String MODID = "betterquesting";
public static final String NAME = "Better Questing Unofficial";
public static final String MODID = Tags.ID;
public static final String NAME = Tags.NAME;
}

0 comments on commit 9d73437

Please sign in to comment.