9
0
mirror of https://github.com/Xiao-MoMi/Custom-Fishing.git synced 2026-01-04 15:41:35 +00:00
This commit is contained in:
Xiao-MoMi
2022-10-18 01:50:56 +08:00
parent eb350a49a8
commit 023667a7d7
98 changed files with 1423 additions and 741 deletions

View File

@@ -143,7 +143,7 @@ public class Competition {
Player player = Bukkit.getPlayer(playerName);
if (player != null){
for (ActionInterface action : rewardsMap.get(String.valueOf(i))) {
action.doOn(player);
action.doOn(player, null);
}
}
i++;
@@ -155,7 +155,7 @@ public class Competition {
Player player = Bukkit.getPlayer(playerName);
if (player != null){
for (ActionInterface action : actions) {
action.doOn(player);
action.doOn(player, null);
}
}
});