1
0
mirror of https://github.com/chylex/Hardcore-Ender-Expansion.git synced 2025-04-10 20:15:42 +02:00

Push some minor tweaks to Causatum Actions that don't do anything

This commit is contained in:
chylex 2015-11-14 15:46:27 +01:00
parent 18028dcf2c
commit 9dbaa907b8
3 changed files with 4 additions and 4 deletions
src/main/java/chylex/hee

View File

@ -35,7 +35,6 @@ public class ItemSpatialDashGem extends ItemAbstractGem{
if (!canUse(is))return is;
if (!world.isRemote){
// TODO CausatumUtils.increase(player,CausatumMeters.ITEM_USAGE,0.5F);
useEnergy(is,player);
world.spawnEntityInWorld(new EntityProjectileSpatialDash(world,player,EnhancementRegistry.getEnhancementList(is)));
}

View File

@ -104,7 +104,6 @@ public class ItemTransferenceGem extends ItemAbstractGem{
}
PacketPipeline.sendToAllAround(entity,64D,new C20Effect(FXType.Basic.GEM_TELEPORT_TO,entity));
// TODO CausatumUtils.increase(player,CausatumMeters.ITEM_USAGE,1F);
}
return is;

View File

@ -21,8 +21,10 @@ public final class Causatum{
INITIAL, ENDERMAN_KILLED, INTO_THE_END
}
public enum Actions{
STAGE_ADVANCE_TO_ENDERMAN_KILLED(false,100); // TODO 100
public enum Actions{ // TODO update
STAGE_ADVANCE_TO_ENDERMAN_KILLED(false,100),
KILL_ENDERMAN(true,20);
public final boolean canRepeat;
public final short levelIncrease;