diff --git a/zone/common.h b/zone/common.h index f932da9da..9cb570985 100644 --- a/zone/common.h +++ b/zone/common.h @@ -846,7 +846,6 @@ public: virtual ~Trade(); void Reset(); - void SetTradeCash(uint32 in_pp, uint32 in_gp, uint32 in_sp, uint32 in_cp); // Initiate a trade with another mob // Also puts other mob into trader mode with this mob diff --git a/zone/trading.cpp b/zone/trading.cpp index bfde4ff53..19873c0bd 100644 --- a/zone/trading.cpp +++ b/zone/trading.cpp @@ -61,11 +61,6 @@ void Trade::Reset() pp=0; gp=0; sp=0; cp=0; } -void Trade::SetTradeCash(uint32 in_pp, uint32 in_gp, uint32 in_sp, uint32 in_cp) -{ - pp=in_pp; gp=in_gp; sp=in_sp; cp=in_cp; -} - // Initiate a trade with another mob // initiate_with specifies whether to start trade with other mob as well void Trade::Start(uint32 mob_id, bool initiate_with)