Fixed a small bug where the last line in a message was not saved.
This commit is contained in:
parent
1255694090
commit
3f5a2c6977
@ -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]);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user