コード例 #1
0
ファイル: GenShopkeeper.java プロジェクト: kingdavid127/MUD
 @Override
 public String text() {
   if (CMProps.getBoolVar(CMProps.Bool.MOBCOMPRESS))
     miscText = CMLib.encoder().compressString(CMLib.coffeeMaker().getPropertiesStr(this, false));
   else miscText = CMLib.coffeeMaker().getPropertiesStr(this, false);
   return super.text();
 }
コード例 #2
0
 public boolean matchesPassword(String checkPass) {
   return CMLib.encoder().passwordCheck(checkPass, password);
 }