davedotluebke / old-skool-text-game

Coding project used to learn Python
5 stars 4 forks source link

The tragedy of the line endings #171

Open 1Bayshore opened 4 years ago

1Bayshore commented 4 years ago

Currently, line endings in the game are someone inconsistent. The line ending mode of any file is determined by the computer it was created on. Unfortunately, this causes some problems on the server, which requires LF endings. Currently, I added code to dos2unix everything on the server. This is not ideal and we should come up with a more permanent solution to this problem.