Exemple #1
0
 public float getDesireValue(L2Object object, DesireType type) {
   Desires desireList = _objectDesireTable.get(object);
   if (desireList == null) return 0f;
   return desireList.getDesireValue(type).getValue();
 }
Exemple #2
0
 public float getDesireValue(DesireType type) {
   return _generalDesires.getDesireValue(type).getValue();
 }