remove more jellyfish stuff

This commit is contained in:
Mister_Nebula 2021-12-02 15:00:08 +00:00
parent 267c624037
commit 0fb03a90cc
2 changed files with 0 additions and 5 deletions

View File

@ -102,6 +102,5 @@
public static string QSBSatelliteRepairTick = "QSBSatelliteRepairTick";
public static string QSBSatelliteRepaired = "QSBSatelliteRepairTick";
public static string QSBSuspendChange = "QSBSuspendChange";
public static string QSBJellyfishRising = "QSBJellyfishRising";
}
}

View File

@ -35,7 +35,6 @@ namespace QSB
public GameObject OrbPrefab { get; private set; }
public GameObject ShipPrefab { get; private set; }
public GameObject AnglerPrefab { get; private set; }
public GameObject JellyfishPrefab { get; private set; }
public string PlayerName { get; private set; }
private const int MaxConnections = 128;
@ -67,9 +66,6 @@ namespace QSB
AnglerPrefab = _assetBundle.LoadAsset<GameObject>("assets/Prefabs/networkangler.prefab");
spawnPrefabs.Add(AnglerPrefab);
JellyfishPrefab = _assetBundle.LoadAsset<GameObject>("assets/Prefabs/networkjellyfish.prefab");
spawnPrefabs.Add(JellyfishPrefab);
ConfigureNetworkManager();
}