Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
gliscowo committed Aug 19, 2023
1 parent ca4af3a commit e87ca1e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ org.gradle.jvmargs=-Xmx1G
loader_version=0.14.21

# Mod Properties
mod_version=0.2.9
mod_version=0.2.10
maven_group=com.glisco
archives_base_name=numismatic-overhaul

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class NumismaticOverhaulConfigModel {
@Comment("Where the purse in your inventory should be placed on the Y axis")
public int pursePositionY = -28;

@Comment("Where the notification for adding/removing money from the purse should be (Requires rejoining to apply)")
@Comment("Where the notification for adding/removing money from the purse should be (requires rejoining to apply)")
@Sync(Option.SyncMode.INFORM_SERVER)
public MoneyMessageLocation moneyMessageLocation = MoneyMessageLocation.ACTIONBAR;

Expand All @@ -32,9 +32,9 @@ public class NumismaticOverhaulConfigModel {


public static class LootOptions {
@Comment("Affects money gained from Dungeon and Mineshaft chests")
@Comment("Affects money gained from Desert Temple chests")
public int desertMinLoot = 300;
@Comment("Affects money gained from Dungeon and Mineshaft chests")
@Comment("Affects money gained from Desert Temple chests")
public int desertMaxLoot = 1200;
@Comment("Affects money gained from Dungeon and Mineshaft chests")
public int dungeonMinLoot = 500;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ public void modify(long value) {

moneyMessageLocation = (NumismaticOverhaulConfigModel.MoneyMessageLocation) ConfigSynchronizer.getClientOptions(
(ServerPlayerEntity) provider,
NumismaticOverhaul.CONFIG).get(NumismaticOverhaul.CONFIG.keys.moneyMessageLocation);
NumismaticOverhaul.CONFIG
).get(NumismaticOverhaul.CONFIG.keys.moneyMessageLocation);

if (moneyMessageLocation == NumismaticOverhaulConfigModel.MoneyMessageLocation.DISABLED) return;

Expand Down

0 comments on commit e87ca1e

Please sign in to comment.