diff options
author | Andrej Sinicyn <andrej4000@gmail.com> | 2005-07-31 15:19:13 +0000 |
---|---|---|
committer | Andrej Sinicyn <andrej4000@gmail.com> | 2005-07-31 15:19:13 +0000 |
commit | 51bfbd368cc455b037393d3383346640113e915b (patch) | |
tree | 7b6bffca7782b557218d481ae47f7d72e530b64c /src/game.cpp | |
parent | 2ec5340b9c5f80094fdce43fa7735d3af5d5982f (diff) | |
download | mana-51bfbd368cc455b037393d3383346640113e915b.tar.gz mana-51bfbd368cc455b037393d3383346640113e915b.tar.bz2 mana-51bfbd368cc455b037393d3383346640113e915b.tar.xz mana-51bfbd368cc455b037393d3383346640113e915b.zip |
Don't allow more than one request trade dialog at once.
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 24fe3723..b550bc43 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -79,6 +79,7 @@ ConfirmDialog *exitConfirm = NULL; Being *target = NULL; Inventory *inventory = NULL; +RequestTradeDialog *requestTradeDialog = NULL; const int EMOTION_TIME = 150; /**< Duration of emotion icon */ const int MAX_TIME = 10000; @@ -1090,7 +1091,10 @@ void do_parse() WFIFOSET(3); break; } - new RequestTradeDialog(RFIFOP(2)); + if (requestTradeDialog == NULL) + { + requestTradeDialog = new RequestTradeDialog(RFIFOP(2)); + } break; // Trade: Response |