Skip to content

Commit

Permalink
Bump version number and complete chores.
Browse files Browse the repository at this point in the history
  • Loading branch information
LlmDl committed May 14, 2024
1 parent 7433f60 commit 458a457
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.gmail.goosius</groupId>
<artifactId>SiegeWar</artifactId>
<version>2.10.1</version>
<version>2.11.0</version>
<name>siegewar</name> <!-- Leave lower-cased -->

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public void onPlayerTeleport(PlayerTeleportEvent event) {
return;

// Let's ignore Citizens NPCs
if (PluginIntegrations.getInstance().checkCitizens(event.getPlayer()))
if (PluginIntegrations.getInstance().isNPC(event.getPlayer()))
return;

// Don't stop a player if they have a teleport pass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

import org.bukkit.Material;
import org.bukkit.Tag;
import org.bukkit.World;
import org.bukkit.block.Banner;
import org.bukkit.block.Block;
import org.bukkit.entity.Player;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
import com.gmail.goosius.siegewar.objects.BattleSession;
import com.gmail.goosius.siegewar.objects.Siege;
import com.gmail.goosius.siegewar.settings.SiegeWarSettings;
import com.palmergames.bukkit.towny.TownySettings;
import com.palmergames.bukkit.towny.TownyUniverse;
import com.palmergames.bukkit.towny.object.Resident;
import com.palmergames.bukkit.towny.object.Translatable;
Expand Down

0 comments on commit 458a457

Please sign in to comment.