From: George N. <no...@ac...> - 2001-10-10 18:00:19
|
Hiya all, I have found a rather annoying bug. If you cut and paste (if multiline input comes all at once), it will reverse the order of that input. So if you write specials code like me in an editor and cut and paste them into the mud, all the lines will be in the wrong order. I have heavily modified the existing AIME code so I can't easily put out a new version. I'll have to fix it with 0.61. If you would like to fix it yourself, in version 0.60.3, go to line 1332 in connection.cpp and change: read_buffer.add_entry(new_str); to: read_buffer.add_tail_entry(new_str); Recompile and that should fix the problem. If you use the win32 version or don't want to be modifying code, you can cut and paste line by line. Annoying, but it does work around the problem. George |