Skip to content

Commit

Permalink
Cope with more username variations. fixes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
richardbenson committed Sep 15, 2011
1 parent 6c3f439 commit a2fd09f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/YAMS-Library/Objects/Server.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class MCServer
private Regex regRemoveDateStamp = new Regex(@"^([0-9]+\-[0-9]+\-[0-9]+ )");
private Regex regRemoveTimeStamp = new Regex(@"^([0-9]+:[0-9]+:[0-9]+ )");
private Regex regErrorLevel = new Regex(@"^\[([A-Z]+)\]{1}");
private Regex regPlayerChat = new Regex(@"^(\<([A-Za-z0-9])+\>){1}");
private Regex regPlayerChat = new Regex(@"^(\<([\w-])+\>){1}");
private Regex regConsoleChat = new Regex(@"^(\[CONSOLE\]){1}");
private Regex regPlayerPM = new Regex(@"^(\[([\w])+\-\>(\w)+\]){1}");
private Regex regPlayerLoggedIn = new Regex(@"^([\w]+)(?: \[\/[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+\:[0-9]+\] logged in with entity id)");
Expand Down

0 comments on commit a2fd09f

Please sign in to comment.