Restores shop item values after previous precision change.

This commit is contained in:
wyld-sw
2017-11-03 07:44:22 -04:00
parent 954d5f2639
commit 08f5eb8947
2 changed files with 5 additions and 5 deletions

View File

@@ -31,8 +31,8 @@ struct shop_buy_data {
struct shop_data {
room_vnum vnum; /* Virtual number of this shop */
obj_vnum *producing; /* Which item to produce (virtual) */
double profit_buy; /* Factor to multiply cost with */
double profit_sell; /* Factor to multiply cost with */
float profit_buy; /* Factor to multiply cost with */
float profit_sell; /* Factor to multiply cost with */
struct shop_buy_data *type; /* Which items to trade */
char *no_such_item1; /* Message if keeper hasn't got an item */
char *no_such_item2; /* Message if player hasn't got an item */