mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
PlayerToolsManager: use player.PlayerId instead of player
This commit is contained in:
parent
7207211454
commit
2173981e83
@ -12,10 +12,10 @@ namespace QSB.Tools
|
||||
{
|
||||
public static void InitRemote(PlayerInfo player)
|
||||
{
|
||||
player.Try("creating flashlight", () => FlashlightCreator.CreateFlashlight(player));
|
||||
player.Try("creating signalscope", () => SignalscopeCreator.CreateSignalscope(player));
|
||||
player.Try("creating probe launcher", () => ProbeLauncherCreator.CreateProbeLauncher(player));
|
||||
player.Try("creating translator", () => TranslatorCreator.CreateTranslator(player));
|
||||
player.PlayerId.Try("creating flashlight", () => FlashlightCreator.CreateFlashlight(player));
|
||||
player.PlayerId.Try("creating signalscope", () => SignalscopeCreator.CreateSignalscope(player));
|
||||
player.PlayerId.Try("creating probe launcher", () => ProbeLauncherCreator.CreateProbeLauncher(player));
|
||||
player.PlayerId.Try("creating translator", () => TranslatorCreator.CreateTranslator(player));
|
||||
}
|
||||
|
||||
public static void InitLocal()
|
||||
|
Loading…
Reference in New Issue
Block a user