We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1b3a96 commit 8ba4526Copy full SHA for 8ba4526
DeathMatchGameMode/DeathmatchGamemode.cs
@@ -32,13 +32,12 @@ public DeathmatchGamemode()
32
{
33
// our plugin is loaded
34
35
- // send a message to the console to signal that everything is allright
36
- Debug.Log("Deathmatch gamemode loaded");
37
-
38
// register our gamemode at GameModeManager
39
// if our gamemode is selected when starting the server, the callback function (Activate) will be called
40
GameModeManager.Instance.RegisterGameMode(new GameModeManager.GameModeInfo("Deathmatch Area 69", "", Activate));
41
+ // send a message to the console to signal that everything is allright
+ Debug.Log("Deathmatch gamemode loaded");
42
}
43
44
void Activate()
0 commit comments