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