コード例 #1
0
ファイル: StdWand.java プロジェクト: renokun/CoffeeMud
 @Override
 public void setSpell(Ability theSpell) {
   miscText = "";
   if (theSpell != null) miscText = theSpell.ID();
   secretWord = StdWand.getWandWord(miscText);
 }
コード例 #2
0
ファイル: StdWand.java プロジェクト: renokun/CoffeeMud
 @Override
 public void setMiscText(String newText) {
   super.setMiscText(newText);
   secretWord = StdWand.getWandWord(newText);
 }