Skip to content

Commit

Permalink
Add debug message to BiomesOPlentyIntegration
Browse files Browse the repository at this point in the history
  • Loading branch information
LXGaming committed Nov 24, 2022
1 parent 155a761 commit 7dce463
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package io.github.lxgaming.sledgehammer.integration.biomesoplenty;

import biomesoplenty.common.entities.item.EntityBOPBoat;
import io.github.lxgaming.sledgehammer.Sledgehammer;
import io.github.lxgaming.sledgehammer.SledgehammerPlatform;
import io.github.lxgaming.sledgehammer.integration.Integration;
import net.minecraftforge.common.MinecraftForge;
Expand All @@ -42,6 +43,7 @@ public void execute() throws Exception {
public void onEntityJoinWorld(EntityJoinWorldEvent event) {
if (event.getEntity() instanceof EntityBOPBoat) {
event.setCanceled(true);
Sledgehammer.getInstance().debug("Biomes O' Plenty Boat was blocked");
}
}
}

0 comments on commit 7dce463

Please sign in to comment.