From: Stefan F. <ste...@us...> - 2012-07-22 21:32:42
|
rails/game/correct/ClosePrivate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit b564e00983be9033464fd3e0658d61143ab5bf5f Author: Stefan Frey <ste...@we...> Date: Sun Jul 22 23:32:17 2012 +0200 fixed bug: cannot save game file with ClosePrivate action, reported by John David Galt diff --git a/rails/game/correct/ClosePrivate.java b/rails/game/correct/ClosePrivate.java index e780ff1..45786f1 100644 --- a/rails/game/correct/ClosePrivate.java +++ b/rails/game/correct/ClosePrivate.java @@ -18,7 +18,7 @@ public class ClosePrivate extends PossibleAction { /* Preconditions */ /** private company to close */ - private PrivateCompanyI privateCompany; + transient private PrivateCompanyI privateCompany; /** converted to name */ private String privateCompanyName; |