Skip to content

Commit

Permalink
Honestly, I dont know what this commit does.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurumi78 committed Aug 19, 2024
1 parent 58fb4a9 commit b025122
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,8 @@ private void createAlterCommand(Player player){

}

private void deleteAlterCommand(Player player){

}

}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public void checkForFrontChanges(final AsyncPlayerChatEvent event) throws Interr

if(event.isAsynchronous()){
Player chatter = event.getPlayer();
if(!SystemSwap.getSystemFromPlayerUUID(chatter.getUniqueId()).equals(null)){
if(SystemSwap.getSystemFromPlayerUUID(chatter.getUniqueId()) != null){
System playersSystem = SystemSwap.getSystemFromPlayerUUID(event.getPlayer().getUniqueId());
if(playersSystem.containsProxyTag(event.getMessage())){
ArrayList<Alter> alters = new ArrayList<>();
Expand Down

0 comments on commit b025122

Please sign in to comment.