diff options
author | megamage <none@none> | 2009-06-17 12:07:28 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-17 12:07:28 -0500 |
commit | 9b9bf9f3fec02fec2def9576edbd9901204e9a27 (patch) | |
tree | 553394faf109fd432c6f907348d5b0b85897fbef /src/trinitycore/CliRunnable.cpp | |
parent | e4e3cb866119884048d131ada4a5a8974e7ec857 (diff) |
*Fix broken windows console command. By CRAZyBUg
--HG--
branch : trunk
Diffstat (limited to 'src/trinitycore/CliRunnable.cpp')
-rw-r--r-- | src/trinitycore/CliRunnable.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trinitycore/CliRunnable.cpp b/src/trinitycore/CliRunnable.cpp index 0752842bc3d..15dd45edfff 100644 --- a/src/trinitycore/CliRunnable.cpp +++ b/src/trinitycore/CliRunnable.cpp @@ -428,8 +428,8 @@ void CliRunnable::run() continue; } fflush(stdout); - #if PLATFORM != WINDOWS sWorld.QueueCliCommand(&utf8print,command.c_str()); + #if PLATFORM != WINDOWS add_history(command.c_str()); #endif |