local file1 = io.open(self.text_en, "r")
for line in file1:lines() do
table.insert (self.monolog_en, line);
end
file1:close()
During the test, everything works as it should, but after compilation, the map simply does not open and the game closes without any errors. Why is this happening, does anyone know?