コード例 #1
0
ファイル: StdWand.java プロジェクト: renokun/CoffeeMud
 public static String getWandWord(String from) {
   int hash = from.hashCode();
   if (hash < 0) hash = hash * -1;
   return CMProps.getListFileChoiceFromIndexedListByHash(CMProps.ListFile.MAGIC_WORDS, hash);
 }