mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-25 00:18:34 +01:00
Comment out logging oon ItemTeleportStaff
This commit is contained in:
parent
e1e92d577a
commit
bae1ef5e91
1 changed files with 4 additions and 5 deletions
|
@ -10,7 +10,6 @@
|
|||
|
||||
package de.ellpeck.actuallyadditions.mod.items;
|
||||
|
||||
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
||||
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
|
||||
import net.minecraft.core.BlockPos;
|
||||
import net.minecraft.server.level.ServerPlayer;
|
||||
|
@ -40,10 +39,10 @@ public class ItemTeleportStaff extends ItemEnergy {
|
|||
Vec3 pos = Vec3.atBottomCenterOf(BlockPos.containing(location.x, location.y, location.z));
|
||||
int baseUse = 200;
|
||||
int use = baseUse + (int) (baseUse * Math.sqrt(player.blockPosition().distManhattan(BlockPos.containing(pos.x, pos.y, pos.z))));
|
||||
ActuallyAdditions.LOGGER.info("Use: " + use + " Energy: " + this.getEnergyStored(stack));
|
||||
ActuallyAdditions.LOGGER.info("Distance: " + Math.sqrt(player.blockPosition().distSqr(BlockPos.containing(pos.x, pos.y, pos.z))));
|
||||
ActuallyAdditions.LOGGER.info("Player: " + player.blockPosition());
|
||||
ActuallyAdditions.LOGGER.info("Pos: " + pos);
|
||||
// ActuallyAdditions.LOGGER.info("Use: " + use + " Energy: " + this.getEnergyStored(stack));
|
||||
// ActuallyAdditions.LOGGER.info("Distance: " + Math.sqrt(player.blockPosition().distSqr(BlockPos.containing(pos.x, pos.y, pos.z))));
|
||||
// ActuallyAdditions.LOGGER.info("Player: " + player.blockPosition());
|
||||
// ActuallyAdditions.LOGGER.info("Pos: " + pos);
|
||||
if (this.getEnergyStored(stack) >= use) {
|
||||
((ServerPlayer) player).connection.teleport(pos.x, pos.y + 1F, pos.z, player.getYRot(), player.getXRot());
|
||||
player.removeVehicle();
|
||||
|
|
Loading…
Reference in a new issue