Skip to content

Commit

Permalink
Update ThutTeleporter.java
Browse files Browse the repository at this point in the history
this was going to wrong logger
  • Loading branch information
Thutmose committed Dec 5, 2020
1 parent 3460865 commit 9710b7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/thut/api/entity/ThutTeleporter.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
import net.minecraftforge.event.TickEvent.WorldTickEvent;
import net.minecraftforge.event.entity.living.LivingHurtEvent;
import net.minecraftforge.eventbus.api.SubscribeEvent;
import pokecube.core.PokecubeCore;
import thut.api.maths.Vector3;
import thut.core.common.ThutCore;

public class ThutTeleporter
{
Expand All @@ -37,7 +37,7 @@ public static TeleDest readFromNBT(final CompoundNBT nbt)
}
catch (final Exception e)
{
PokecubeCore.LOGGER.error("Error loading value", e);
ThutCore.LOGGER.error("Error loading value", e);
return null;
}
return new TeleDest().setLoc(pos, loc).setPos(pos).setName(name).setIndex(index);
Expand Down

0 comments on commit 9710b7a

Please sign in to comment.