mirror of
https://github.com/CommonLoon102/NBloodServerSupervisor.git
synced 2024-12-23 19:22:45 +01:00
3af4c9dfc7
* add option to play custom maps on private servers * don't show every exception to the end-user * hash the IPs * add description about the purpose of the public custom map list * add punctuation to error messages
19 lines
550 B
Plaintext
19 lines
550 B
Plaintext
@model StartServerResponse
|
|
@{
|
|
ViewData["Title"] = "Your Private Server";
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
|
|
<div class="bordered">
|
|
@if (Model.IsSuccess)
|
|
{
|
|
<p>Command: <span class="code">@Model.CommandLine</span></p>
|
|
<p>At least 1 person must join in 10 minutes, otherwise the server will be killed.</p>
|
|
<p>If you have provided a custom map, you have to type its name in the user map section when starting a new game.</p>
|
|
}
|
|
else
|
|
{
|
|
<p>Error: @Model.ErrorMessage</p>
|
|
}
|
|
</div>
|