diff --git a/changelog.txt b/changelog.txt index 390c45cd9..84b7dc67b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ EQEMu Changelog (Started on Sept 24, 2003 15:50) ------------------------------------------------------- +== 2/19/2017 == +Akkadius: Added a fix for limiting the amount of items sold in a stack when the resulting return coin is higher than the supporting struct for returning coin + == 01/31/2017 == Uleat: Modifed bot movement behavior in an attempt to 'normalize' it. This is a hack fix and will be revisited at some point. (Probably just need a follow function rather than use movement, when the leader of the follow chain is moving.) diff --git a/world/console.cpp b/world/console.cpp index 5f1598654..b8a0b419a 100644 --- a/world/console.cpp +++ b/world/console.cpp @@ -68,7 +68,7 @@ void CatchSignal(int sig_num); Console::Console(EmuTCPConnection* itcpc) : WorldTCPConnection(), timeout_timer(RuleI(Console, SessionTimeOut)), - prompt_timer(1000) + prompt_timer(1) { tcpc = itcpc; tcpc->SetEcho(true);