Refresh on download to fix the gold bug

This commit is contained in:
darbyjack 2018-10-20 15:43:38 -05:00
parent 90bc3c8da1
commit 639b7967e3
1 changed files with 3 additions and 2 deletions

View File

@ -73,8 +73,7 @@ public class ExpansionCloudCommands implements CommandExecutor {
.equalsIgnoreCase("fetch")) {
msg(s, "&aRefresh task started. Use &f/papi ecloud list all &ain a few!!");
plugin.getExpansionCloud().clean();
plugin.getExpansionCloud()
.fetch(plugin.getPlaceholderAPIConfig().cloudAllowUnverifiedExpansions());
plugin.getExpansionCloud().fetch(plugin.getPlaceholderAPIConfig().cloudAllowUnverifiedExpansions());
return true;
}
@ -413,6 +412,8 @@ public class ExpansionCloudCommands implements CommandExecutor {
+ version);
String player = ((s instanceof Player) ? s.getName() : null);
plugin.getExpansionCloud().downloadExpansion(player, expansion, version);
plugin.getExpansionCloud().clean();
plugin.getExpansionCloud().fetch(plugin.getPlaceholderAPIConfig().cloudAllowUnverifiedExpansions());
return true;
}