|
@@ -792,7 +792,7 @@ void TraderDispatch::server_line(const std::string &line,
|
|
|
BUGZ_LOG(fatal) << "% " << (float)initial_offer / (float)last_offer * 100.0;
|
|
|
BUGZ_LOG(fatal) << "meta trade setting: " << percent << " for "
|
|
|
<< active_port << " " << product;
|
|
|
- director.galaxy.meta["trade"][active_port][product] = percent;
|
|
|
+ director.galaxy.meta["_trade"][active_port][product] = percent;
|
|
|
|
|
|
// subtract total holds value from this port's amount
|
|
|
auto port = director.galaxy.ports.find(active_port);
|
|
@@ -811,8 +811,8 @@ void TraderDispatch::server_line(const std::string &line,
|
|
|
if (startswith(line, "Agreed, ")) {
|
|
|
last_offer = 0;
|
|
|
final_offer = 0;
|
|
|
- if (director.galaxy.meta["trade"][active_port][product]) {
|
|
|
- percent = director.galaxy.meta["trade"][active_port][product].as<float>();
|
|
|
+ if (director.galaxy.meta["_trade"][active_port][product]) {
|
|
|
+ percent = director.galaxy.meta["_trade"][active_port][product].as<float>();
|
|
|
percent += 1.0;
|
|
|
BUGZ_LOG(fatal) << "Percent for " << active_port << " now " << percent;
|
|
|
} else {
|
|
@@ -852,7 +852,7 @@ void TraderDispatch::server_line(const std::string &line,
|
|
|
// well rats.
|
|
|
BUGZ_LOG(fatal) << "We're not interested => meta trade setting: " << percent
|
|
|
<< " for " << active_port << " " << product;
|
|
|
- director.galaxy.meta["trade"][active_port][product] = percent;
|
|
|
+ director.galaxy.meta["_trade"][active_port][product] = percent;
|
|
|
try_again = true;
|
|
|
}
|
|
|
|