From 84236093c8c7bc678ccc161eccda2000438ced1f Mon Sep 17 00:00:00 2001 From: Electroblob77 <35599699+Electroblob77@users.noreply.github.com> Date: Wed, 23 Sep 2020 14:04:23 +0100 Subject: [PATCH] Plug spell property value into black hole radius calculations --- .../electroblob/wizardry/entity/construct/EntityBlackHole.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/electroblob/wizardry/entity/construct/EntityBlackHole.java b/src/main/java/electroblob/wizardry/entity/construct/EntityBlackHole.java index b38445e9..5cd84e76 100644 --- a/src/main/java/electroblob/wizardry/entity/construct/EntityBlackHole.java +++ b/src/main/java/electroblob/wizardry/entity/construct/EntityBlackHole.java @@ -93,7 +93,7 @@ public class EntityBlackHole extends EntityScaledConstruct { if(!this.world.isRemote){ - double radius = 6 * sizeMultiplier; // TODO: Support for spell properties + double radius = 2 * height * sizeMultiplier; boolean suckInBlocks = getCaster() instanceof EntityPlayer && EntityUtils.canDamageBlocks(getCaster(), world) && ItemArtefact.isArtefactActive((EntityPlayer)getCaster(), WizardryItems.charm_black_hole);