(svn r12616) -Codechange: r12591 didn't work as expected for NDS, move one function back to cpp

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
smatz 16 years ago
parent f1cd7ef5ee
commit 42a66ef990

@ -668,3 +668,14 @@ callb_err:
ClearStorageChanges(false);
return false;
}
CommandCost CommandCost::AddCost(CommandCost ret)
{
this->AddCost(ret.cost);
if (this->success && !ret.success) {
this->message = ret.message;
this->success = false;
}
return *this;
}

@ -49,15 +49,7 @@ public:
* @param ret the command to add the cost of.
* @return this class.
*/
CommandCost AddCost(CommandCost ret)
{
this->AddCost(ret.cost);
if (this->success && !ret.success) {
this->message = ret.message;
this->success = false;
}
return *this;
}
CommandCost AddCost(CommandCost ret);
/**
* Adds the given cost to the cost of the command.

Loading…
Cancel
Save