This repository was archived by the owner on Oct 20, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed
com.improbable.gdk.guns/Systems
com.improbable.gdk.health/Systems Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1- 3efffab0103556d09f2ae7e788d555e23367f069
1+ 8708f8b47e323b5b54dcb8e4528a05ad5ee81b0b
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ public class PlayerStateServerSystem : ComponentSystem
1010 private CommandSystem commandSystem ;
1111 private WorkerSystem workerSystem ;
1212
13- protected override void OnCreateManager ( )
13+ protected override void OnCreate ( )
1414 {
15- base . OnCreateManager ( ) ;
15+ base . OnCreate ( ) ;
1616
1717 commandSystem = World . GetExistingSystem < CommandSystem > ( ) ;
1818 workerSystem = World . GetExistingSystem < WorkerSystem > ( ) ;
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ public class TrackPlayerSystem : ComponentSystem
2727 public Status ? SessionStatus { get ; private set ; }
2828 public List < ResultsData > PlayerResults { get ; private set ; }
2929
30- protected override void OnCreateManager ( )
30+ protected override void OnCreate ( )
3131 {
32- base . OnCreateManager ( ) ;
32+ base . OnCreate ( ) ;
3333
3434 commandSystem = World . GetExistingSystem < CommandSystem > ( ) ;
3535 logDispatcher = World . GetExistingSystem < WorkerSystem > ( ) . LogDispatcher ;
Original file line number Diff line number Diff line change @@ -28,9 +28,9 @@ public class MetricSendSystem : ComponentSystem
2828
2929 private static readonly Metrics WorkerMetrics = new Metrics ( ) ;
3030
31- protected override void OnCreateManager ( )
31+ protected override void OnCreate ( )
3232 {
33- base . OnCreateManager ( ) ;
33+ base . OnCreate ( ) ;
3434 connection = World . GetExistingSystem < WorkerSystem > ( ) . Connection ;
3535
3636 targetFps = Application . targetFrameRate == - 1
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ public class ServerShootingSystem : ComponentSystem
1212 private CommandSystem commandSystem ;
1313 private ComponentUpdateSystem componentUpdateSystem ;
1414
15- protected override void OnCreateManager ( )
15+ protected override void OnCreate ( )
1616 {
17- base . OnCreateManager ( ) ;
17+ base . OnCreate ( ) ;
1818
1919 workerSystem = World . GetExistingSystem < WorkerSystem > ( ) ;
2020 commandSystem = World . GetExistingSystem < CommandSystem > ( ) ;
Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ public class HealthRegenSystem : ComponentSystem
2121
2222 private HashSet < EntityId > recentlyDamagedCache = new HashSet < EntityId > ( ) ;
2323
24- protected override void OnCreateManager ( )
24+ protected override void OnCreate ( )
2525 {
26- base . OnCreateManager ( ) ;
26+ base . OnCreate ( ) ;
2727
2828 workerSystem = World . GetExistingSystem < WorkerSystem > ( ) ;
2929 componentUpdateSystem = World . GetExistingSystem < ComponentUpdateSystem > ( ) ;
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ public class ServerHealthModifierSystem : ComponentSystem
1313 private CommandSystem commandSystem ;
1414 private ComponentUpdateSystem componentUpdateSystem ;
1515
16- protected override void OnCreateManager ( )
16+ protected override void OnCreate ( )
1717 {
18- base . OnCreateManager ( ) ;
18+ base . OnCreate ( ) ;
1919
2020 workerSystem = World . GetExistingSystem < WorkerSystem > ( ) ;
2121 commandSystem = World . GetExistingSystem < CommandSystem > ( ) ;
You can’t perform that action at this time.
0 commit comments