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:
parent
18028dcf2c
commit
9dbaa907b8
src/main/java/chylex/hee
@ -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)));
|
||||
}
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user