Skip to content

Commit

Permalink
Fix Ruby Holy Staff repair recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsoltMolnarrr committed May 17, 2023
1 parent 6aaa570 commit 37fdffb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.9.3

- Fix Ruby Holy Staff repair recipe

# 0.9.2

- Add monk villager with village structures
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/java/net/paladins/item/Weapons.java
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private static Weapon.Entry staff(String requiredMod, String name, Weapon.Custom
public static void register(Map<String, ItemConfig.Weapon> configs) {
if (Platform.isModLoaded("betternether")) {
staff("betternether", "ruby_holy_staff",
Weapon.CustomMaterial.matching(ToolMaterials.NETHERITE, ingredient("betterend:nether_ruby")))
Weapon.CustomMaterial.matching(ToolMaterials.NETHERITE, ingredient("betternether:nether_ruby")))
.attribute(ItemConfig.SpellAttribute.bonus(SpellAttributes.POWER.get(MagicSchool.HEALING), 6));
}
if (Platform.isModLoaded("betterend")) {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ forge_version=1.19.2-43.1.25
# Mod
maven_group=net
archives_base_name=paladins
mod_version=0.9.2
mod_version=0.9.3

# Dependencies
gecko_mc_prefix=1.19:
Expand Down

0 comments on commit 37fdffb

Please sign in to comment.