Skip to content

Commit

Permalink
fix: removes rank and join date on disband
Browse files Browse the repository at this point in the history
  • Loading branch information
RoinujNosde authored Aug 15, 2022
1 parent 1311423 commit 2a1ad5b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,8 @@ public void disband(@Nullable CommandSender sender, boolean announce, boolean fo
for (ClanPlayer cp : clanPlayers) {
if (cp.getTag().equals(getTag())) {
cp.setClan(null);

cp.setJoinDate(0);
cp.setRank(null);
if (isVerified()) {
cp.addPastClan(getColorTag() + (cp.isLeader() ? DARK_RED + "*" : ""));
}
Expand Down

0 comments on commit 2a1ad5b

Please # to comment.