Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 504db14

Browse files
committed
refactor: rename bossItemMerchantNPC class
1 parent 596bf01 commit 504db14

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/me/ShermansWorld/AlathraExtras/npcs/BossItemMerchantNPC.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
/**
1313
* Handles code for the boss item merchant, specifically the one for the nether update.
1414
*/
15-
public class bossItemMerchantNPC{
15+
public class BossItemMerchantNPC {
1616
public static final int ID = 83;
1717

1818
/**

src/main/java/me/ShermansWorld/AlathraExtras/npcs/NPCListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
public class NPCListener implements Listener {
99
@EventHandler
1010
public void npcSpawnListener(NPCSpawnEvent e) {
11-
if (e.getNPC().getId() == bossItemMerchantNPC.ID){
12-
bossItemMerchantNPC.teleportMerchant();
11+
if (e.getNPC().getId() == BossItemMerchantNPC.ID){
12+
BossItemMerchantNPC.teleportMerchant();
1313
}
1414
}
1515
}

0 commit comments

Comments
 (0)