Commit 8b5d7855 authored by Melledy's avatar Melledy Committed by GitHub
Browse files

Merge pull request #92 from Grasscutters/account-fix

Fixes for the error in the revive command
parents db1c4cd4 04791b68
......@@ -86,8 +86,10 @@ public final class Grasscutter {
public static void loadConfig() {
try (FileReader file = new FileReader(configFile)) {
config = gson.fromJson(file, Config.class);
saveConfig();
} catch (Exception e) {
Grasscutter.config = new Config(); saveConfig();
Grasscutter.config = new Config();
saveConfig();
}
}
......
......@@ -15,12 +15,12 @@ import java.util.List;
@Command(label = "revive", aliases = {"rev"},
usage = "revive|rev", description = "Revive character(s) that died)")
public class Revive implements CommandHandler {
public class ReviveCommand implements CommandHandler {
//private Object teamId;
@Override
public void execute(GenshinPlayer player, List<String> args) {
for (EntityAvatar entity2 : TeamManager.getActiveTeam()) {
for (EntityAvatar entity2 : player.getTeamManager().getActiveTeam()) {
entity2.setFightProperty(
FightProperty.FIGHT_PROP_CUR_HP,
entity2.getFightProperty(FightProperty.FIGHT_PROP_MAX_HP) * .4f
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment