fix unmerged file

This commit is contained in:
Bella 2020-04-01 18:22:40 -04:00
parent 4e77594590
commit 3844a95e18
No known key found for this signature in database
GPG Key ID: 815562EA23BFE344
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ public class MixinBlockWeb {
@Inject(method = "onEntityCollision", at = @At("HEAD"), cancellable = true)
public void onEntityCollidedWithBlock(World worldIn, BlockPos pos, IBlockState state, Entity entityIn, CallbackInfo info) {
// If noslowdown is on, just don't do anything else in this method (slow the player)
if (MODULE_MANAGER.isModuleEnabled(NoSlowDown.class) && KamiMod.MODULE_MANAGER.getModuleT(NoSlowDown.class).cobweb.getValue()) info.cancel();
if (MODULE_MANAGER.isModuleEnabled(NoSlowDown.class) && MODULE_MANAGER.getModuleT(NoSlowDown.class).cobweb.getValue()) info.cancel();
}
}