- Change the prompt of AF charm from "choose a spell" to "choose a mode" to reflect its usage on abilities.

This commit is contained in:
Sloth
2011-10-14 12:23:23 +00:00
parent 95f7e1217a
commit 2d39c04f9e

View File

@@ -128,7 +128,7 @@ public final class AbilityFactory_Charm {
} }
} }
for (int i = 0; i < sa.getCharmNumber(); i++) { for (int i = 0; i < sa.getCharmNumber(); i++) {
Object o = GuiUtils.getChoice("Choose a spell", choices.toArray()); Object o = GuiUtils.getChoice("Choose a mode", choices.toArray());
Ability_Sub chosen = (Ability_Sub) o; Ability_Sub chosen = (Ability_Sub) o;
sa.addCharmChoice(chosen); sa.addCharmChoice(chosen);
choices.remove(chosen); choices.remove(chosen);