Fixed a small bug where the last line in a message was not saved.

This commit is contained in:
Ken Bowley 2001-09-24 05:44:55 +00:00
parent 1255694090
commit 3f5a2c6977

View File

@ -577,7 +577,7 @@ int Save_Msg(int IsReply, faddr *Dest)
/*
* Add message text
*/
for (i = 1; i < Line; i++) {
for (i = 1; i <= Line; i++) {
MsgText_Add2(Message[i]);
}