diff options
author | Paul Gilbert | 2018-03-25 13:34:27 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-03-25 13:34:27 -0400 |
commit | 56c464202751a0af2d5433899b1b748406e5c631 (patch) | |
tree | be1e53541646a835a10deec920a8a80e560b176a | |
parent | 4faa8b0439f89c7925819abd19b85af0c0608b23 (diff) | |
download | scummvm-rg350-56c464202751a0af2d5433899b1b748406e5c631.tar.gz scummvm-rg350-56c464202751a0af2d5433899b1b748406e5c631.tar.bz2 scummvm-rg350-56c464202751a0af2d5433899b1b748406e5c631.zip |
XEEN: Slightly increase delay between giving multiple treasure items
-rw-r--r-- | engines/xeen/party.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/party.cpp b/engines/xeen/party.cpp index e7d39ed381..0937137f8f 100644 --- a/engines/xeen/party.cpp +++ b/engines/xeen/party.cpp @@ -831,7 +831,7 @@ void Party::giveTreasureToCharacter(Character &c, ItemCategory category, int ite w.writeString(Common::String::format(Res.X_FOUND_Y, c._name.c_str(), itemName)); w.update(); c._items[category].sort(); - events.ipause(5); + events.ipause(8); } bool Party::canShoot() const { |