Fixed user metric computation for Minetest.
This commit is contained in:
parent
c267d2637a
commit
8aa0a2e84b
1 changed files with 9 additions and 1 deletions
|
@ -123,7 +123,15 @@ public class MinetestLog
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
result = null;
|
matcher = JOIN_PATTERN.matcher(this.message);
|
||||||
|
if (matcher.matches())
|
||||||
|
{
|
||||||
|
result = matcher.group("nickname");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
result = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue