Skip to content

Commit

Permalink
1.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Quplet committed Sep 22, 2023
1 parent 00dafae commit 4921b62
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 16 deletions.
10 changes: 4 additions & 6 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
1.3.6-1.20
1.3.7-1.20

Fixes/Changes:
- Updated Cloth Config
- Fixed Lucky Miner not working with deepslate ores (#12)
- Fixed Skywalker not working properly at negative Y values
- Nightblood now has a good chance to destroy an armor piece instead of killing the target
- Cloud blocks now emmit smoke (steam) instead of water droplets in ultrawarm dimensions
- Updated to 1.20.2
- Updated mod icon
- Updated dependencies
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/develop
minecraft_version=1.20.1
yarn_mappings=1.20.1+build.10
loader_version=0.14.21
minecraft_version=1.20.2
yarn_mappings=1.20.2+build.1
loader_version=0.14.22

# Mod Properties
mod_version = 1.3.6-1.20
mod_version = 1.3.7-1.20.2
maven_group = qu
archives_base_name = qu-enchantments

# Dependencies
fabric_version=0.85.0+1.20.1
fabric_version=0.89.1+1.20.2
fabric_asm_version = v2.3
mixin_extras_version = 0.1.1
mod_menu_version = 7.2.1
cloth_config_version = 11.1.106
mod_menu_version = 8.0.0-beta.2
cloth_config_version = 12.0.109
2 changes: 1 addition & 1 deletion src/main/java/qu/quEnchantments/mixin/EntityMixin.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import qu.quEnchantments.util.interfaces.IEntity;

@Mixin(Entity.class)
public class EntityMixin implements IEntity {
public abstract class EntityMixin implements IEntity {

@Shadow
@Final
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/qu/quEnchantments/util/ModEvents.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ public static void RegisterModEvents() {
} else {
EntityAttributeInstance instance = livingEntity.getAttributeInstance(EntityAttributes.GENERIC_MOVEMENT_SPEED);
if (instance != null && instance.getModifier(SpeedBlessingEnchantment.SPEED_BOOST.getId()) != null) {
instance.removeModifier(SpeedBlessingEnchantment.SPEED_BOOST);
instance.removeModifier(SpeedBlessingEnchantment.SPEED_BOOST.getId());
}
instance = livingEntity.getAttributeInstance(EntityAttributes.GENERIC_ATTACK_SPEED);
if (instance != null && instance.getModifier(AggressionBlessingEnchantment.ATTACK_BOOST.getId()) != null) {
instance.removeModifier(AggressionBlessingEnchantment.ATTACK_BOOST);
instance.removeModifier(AggressionBlessingEnchantment.ATTACK_BOOST.getId());
}
}
});
Expand Down

0 comments on commit 4921b62

Please sign in to comment.