From 42a66ef9903d12cf748ddc6b3c4dcfaaef1c5efd Mon Sep 17 00:00:00 2001 From: smatz Date: Mon, 7 Apr 2008 20:02:36 +0000 Subject: (svn r12616) -Codechange: r12591 didn't work as expected for NDS, move one function back to cpp --- src/command_type.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/command_type.h') diff --git a/src/command_type.h b/src/command_type.h index 2f3fe2947..da310fe4e 100644 --- a/src/command_type.h +++ b/src/command_type.h @@ -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. -- cgit v1.2.3-54-g00ecf