Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Quick Fix to Announcement Feature
Let's pretend this atrocity never existed
  • Loading branch information
123DMWM committed Aug 30, 2020
1 parent 53db6db commit af731f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fCraft/System/Server.cs
Expand Up @@ -981,7 +981,7 @@ static void CheckIdles(SchedulerTask task)
byte messageLine = 100;
if (line.StartsWith("λ")) {
try {
messageLine = byte.Parse(line.Remove(0,1).Take(3).JoinToString());
messageLine = byte.Parse(line.Substring(1, 3));
} catch {}
line = line.Remove(0, 4);
}
Expand Down

0 comments on commit af731f9

Please sign in to comment.