OS: Windows
Most of history is missing and what exists has been corrupted.

Likely related to opening the history file twice:
|
local file_name = ("%s/%s_history.txt"):format(HISTORY_DIRECTORY, name:lower()) |
|
local file_handles = history_file_handles[name] |
|
if not file_handles then |
|
file_handles = { |
|
input = file.Open(file_name, "w", "DATA"), |
|
output = file.Open(file_name, "r", "DATA"), |
|
} |
(opening for write also truncates immediately).
Testing on meta3 with cf11022
OS: Windows

Most of history is missing and what exists has been corrupted.
Likely related to opening the history file twice:
EasyChat/lua/easychat/easychat.lua
Lines 1556 to 1562 in 4bf0ead
Testing on meta3 with cf11022