--- deliantra/server/include/player.h 2007/05/13 15:13:57 1.54 +++ deliantra/server/include/player.h 2007/05/18 15:05:08 1.56 @@ -85,6 +85,13 @@ uint32 ACC (RW, kills); }; +// used for pet monster logic etc. +static bool +same_party (partylist *a, partylist *b) +{ + return a == b && a; +} + INTERFACE_CLASS (player) struct player : zero_initialised, attachable { @@ -163,8 +170,6 @@ shstr ACC (RW, invis_race); /* What race invisible to? */ - MTH float weapon_speed () const; - MTH static player *create (); static player *load_pl (object_thawer &thawer);