mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 23:31:13 -05:00
misc clearnup
This commit is contained in:
@ -306,7 +306,7 @@ namespace IW4MAdmin.Application.EventParsers
|
||||
};
|
||||
}
|
||||
|
||||
private GameEvent? ParseJoinTeamEvent(string logLine, long gameTime)
|
||||
private GameEvent ParseJoinTeamEvent(string logLine, long gameTime)
|
||||
{
|
||||
var match = Configuration.JoinTeam.PatternMatcher.Match(logLine);
|
||||
|
||||
@ -360,7 +360,7 @@ namespace IW4MAdmin.Application.EventParsers
|
||||
};
|
||||
}
|
||||
|
||||
private GameEvent? ParseClientEnterMatchEvent(string logLine, long gameTime)
|
||||
private GameEvent ParseClientEnterMatchEvent(string logLine, long gameTime)
|
||||
{
|
||||
var match = Configuration.Join.PatternMatcher.Match(logLine);
|
||||
|
||||
@ -409,7 +409,7 @@ namespace IW4MAdmin.Application.EventParsers
|
||||
|
||||
#region DAMAGE
|
||||
|
||||
private GameEvent? ParseDamageEvent(string logLine, long gameTime)
|
||||
private GameEvent ParseDamageEvent(string logLine, long gameTime)
|
||||
{
|
||||
var match = Configuration.Damage.PatternMatcher.Match(logLine);
|
||||
|
||||
|
Reference in New Issue
Block a user