Skip to content

Commit f4b9e47

Browse files
committed
remove #if check
1 parent bd0ee33 commit f4b9e47

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Assets/BossRoom/Scripts/Server/ServerTestingHotkeys.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ namespace BossRoom.Server
55
{
66
/// <summary>
77
/// Provides various special commands that the Host can use while developing and
8-
/// debugging the game. These are not compiled into release builds. (If you want
9-
/// to disable them for debug builds, disable or remove this component from the
10-
/// BossRoomState prefab.)
8+
/// debugging the game. To disable them, just disable or remove this component from the
9+
/// BossRoomState prefab.
1110
/// </summary>
1211
public class ServerTestingHotkeys : NetworkBehaviour
1312
{
14-
#if UNITY_EDITOR || DEVELOPMENT_BUILD
1513
[SerializeField]
1614
[Tooltip("Enemy to spawn. Make sure this is included in the NetworkManager's list of prefabs!")]
1715
private NetworkObject m_EnemyPrefab;
@@ -63,6 +61,5 @@ private void Update()
6361
MLAPI.SceneManagement.NetworkSceneManager.SwitchScene("PostGame");
6462
}
6563
}
66-
#endif
6764
}
6865
}

0 commit comments

Comments
 (0)