Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/trademenu.cc')
-rw-r--r--src/client/trademenu.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/trademenu.cc b/src/client/trademenu.cc
index 1de42e4..6421d43 100644
--- a/src/client/trademenu.cc
+++ b/src/client/trademenu.cc
@@ -192,7 +192,7 @@ void TradeMenu::set_item(ui::ListItem *item)
amount = (long) menu_slider->value();
std::ostringstream commandstr;
- commandstr << "remote sell " << item->info()->type()->label() << " " << item->info()->label() << " " << amount;
+ commandstr << "remote sell " << item->item()->id() << " " << amount;
menu_buybutton->set_command(commandstr.str());
menu_buybutton->enable();
}
@@ -237,7 +237,7 @@ void TradeMenu::set_item(ui::ListItem *item)
amount = (long) menu_slider->value();
std::ostringstream commandstr;
- commandstr << "remote buy " << item->info()->type()->label() << " " << item->info()->label() << " " << amount;
+ commandstr << "remote buy " << item->item()->id() << " " << amount;
menu_buybutton->set_command(commandstr.str());
menu_buybutton->enable();