Skip to content

Commit

Permalink
fix(neo/1.20.4): fix #48
Browse files Browse the repository at this point in the history
  • Loading branch information
cnlimiter committed Mar 20, 2024
1 parent 7c8260a commit 51f5f30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ curios_version=5.4.7+1.20.1
mod_id=avaritia
mod_name=Re-Avaritia-forged
mod_license=MIT
mod_version=1.3.5.3
mod_version=1.3.5.4
mod_group_id=committee.nova.mods
mod_authors=cnlimiter, Asek3, MikhailTapio
mod_description=Are you the type of modded Minecraft player that makes a beeline for the designated \"end game\" and then gives up on ever playing again once you get there? Do you wish there was a way to make the process take significantly longer? Do you love GregTech, but wish it weren't so short? Do you sit down on your chest full of Galgadorian Drills and wish there was a mod that didn't just hand things to you on a silver platter?\n\n \n\nThis might be the mod for you!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public static void onDeath(LivingDeathEvent event) {
public static void jumpBoost(LivingEvent.LivingJumpEvent event) {
LivingEntity entity = event.getEntity();
if (entity instanceof Player player && entitiesWithBoots.contains(player.getGameProfile().getName() + ":" + entity.level().isClientSide))
player.setDeltaMovement(0, 0.65f, 0);
player.setDeltaMovement(0, 0.55f, 0);
}

@SubscribeEvent
Expand Down

0 comments on commit 51f5f30

Please sign in to comment.