1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-07-05 11:28:54 -05:00

Official version 0.9.5

This commit is contained in:
RaidMax
2015-09-01 11:00:12 -05:00
parent 995334796e
commit ea1ffeeb4a
6 changed files with 19 additions and 5 deletions

View File

@ -169,7 +169,6 @@ namespace Webfront_Plugin
<th class=server_map><span>{1}</span></th>
<th class=server_players><span>{2}</span></th>
<th class=server_gametype><span>{3}</span></th>
<th><a href=/stats>Stats</a></th>
<th><a href=/bans>Bans</a></th>
<th><a class='history' href='/graph?server={4}'>History</a></th>
</tr>

View File

@ -13,12 +13,12 @@ namespace Webfront_Plugin
if (E.Type == Event.GType.Start)
{
Manager.webFront.addServer(E.Owner);
E.Owner.Log.Write("Webfront now has access to server on port " + E.Owner.getPort(), Log.Level.Production);
E.Owner.Log.Write("Webfront now listening", Log.Level.Production);
}
if (E.Type == Event.GType.Stop)
{
Manager.webFront.removeServer(E.Owner);
E.Owner.Log.Write("Webfront has lost access to server on port " + E.Owner.getPort(), Log.Level.Production);
E.Owner.Log.Write("Webfront has lost access to server", Log.Level.Production);
}
}