--- deliantra/server/common/item.C 2009/11/10 04:38:45 1.67 +++ deliantra/server/common/item.C 2010/03/20 00:42:08 1.70 @@ -765,7 +765,7 @@ * fall into the 'lightning fast movement' category. */ if (op->has_active_speed ()) - switch ((int)((fabs (op->speed)) * 15.)) + switch ((int)(op->speed * 15.)) { case 0: buf << "(very slow movement)"; @@ -845,7 +845,7 @@ } /* describe attacktypes */ - if (is_dragon_pl (op)) + if (op->is_dragon ()) { /* for dragon players display the attacktypes from clawing skill * Break apart the for loop - move the comparison checking down - @@ -1154,7 +1154,7 @@ /* resistance on flesh is only visible for quetzals. If * non flesh, everyone can see its resistances */ - if (op->type != FLESH || (owner && is_dragon_pl (owner))) + if (op->type != FLESH || (owner && owner->is_dragon ())) buf << describe_resistance (op, 0); buf.add_paths ("Attuned", op->path_attuned); @@ -1191,7 +1191,7 @@ for (object *tmp = inv; tmp; tmp = tmp->below) if (who && QUERY_FLAG (who, FLAG_WIZ)) - buf.printf ("%s- %-28.28s (%5d) %-8s\n", indent, tmp->query_name (), tmp->count, tmp->query_weight ()); + buf.printf ("%s- %-28.28s %-8s (%9d) %s\n", indent, tmp->query_name (), tmp->query_weight (), tmp->count, tmp->uuid.c_str ()); else if (!tmp->invisible && (type == CONTAINER || QUERY_FLAG (tmp, FLAG_APPLIED))) buf.printf ("%s- %-36.36s %-8s\n", indent, tmp->query_name (), tmp->query_weight ());