Skip to content

Commit

Permalink
up 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
a1640727878 committed Jul 3, 2019
1 parent 1682999 commit 2b5fee8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: BaiTeam
main: sky_bai.bukkit.baiteam.BaiTeamMain
api-version: 1.13
version: 0.0.4
version: 0.0.5
author: sky_bai
prefix: BaiTeam
depend: ["DungeonsXL","PlaceholderAPI"]
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/sky_bai/bukkit/baiteam/gui/TeamGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void openTeamInfoGui(Team team, Player player) {
a1.addExtra("队长名称: " + team.getLeader().getName() + "\n\n");
List<Player> b1 = new ArrayList<Player>();
b1.addAll(team.getMembers());
TextComponent c1 = new TextComponent("" + b1.size() + "/5");
TextComponent c1 = new TextComponent("" + b1.size() + "/" + BaiTeam.getConfig(ConfigType.Config).getInt("TeamSize",5));
TextComponent d1 = new TextComponent();
for (Player player2 : b1) {
d1.addExtra(player2.getName() + "\n");
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: BaiTeam
main: sky_bai.bukkit.baiteam.BaiTeamMain
api-version: 1.13
version: 0.0.4
version: 0.0.5
author: sky_bai
prefix: BaiTeam
depend: ["DungeonsXL","PlaceholderAPI"]
Expand Down

0 comments on commit 2b5fee8

Please sign in to comment.