@@ -21,23 +21,39 @@ public sealed partial class StationStockMarketComponent : Component
21
21
DisplayName = "Nanotrasen [NT]" ,
22
22
CurrentPrice = 100f ,
23
23
BasePrice = 100f ,
24
- PriceHistory = [ 100f , 100f , 100f , 100f , 100f ] , // look somewhere else
24
+ PriceHistory = [ ] ,
25
25
} ,
26
26
[ "Gorlex" ] = new StockCompanyStruct
27
27
{
28
28
Name = "Gorlex" ,
29
29
DisplayName = "Gorlex [GRX]" ,
30
30
CurrentPrice = 75f ,
31
31
BasePrice = 75f ,
32
- PriceHistory = [ 75f , 75f , 75f , 75f , 75f ] ,
32
+ PriceHistory = [ ] ,
33
+ } ,
34
+ [ "Interdyne" ] = new StockCompanyStruct
35
+ {
36
+ Name = "Interdyne" ,
37
+ DisplayName = "Interdyne Pharmaceuticals [INTP]" ,
38
+ CurrentPrice = 300f ,
39
+ BasePrice = 300f ,
40
+ PriceHistory = [ ] ,
33
41
} ,
34
42
[ "FishInc" ] = new StockCompanyStruct
35
43
{
36
44
Name = "FishInc" ,
37
45
DisplayName = "Fish Inc. [FIN]" ,
38
46
CurrentPrice = 25f ,
39
47
BasePrice = 25f ,
40
- PriceHistory = [ 25f , 25f , 25f , 25f , 25f ] ,
48
+ PriceHistory = [ ] ,
49
+ } ,
50
+ [ "Donk" ] = new StockCompanyStruct
51
+ {
52
+ Name = "Donk" ,
53
+ DisplayName = "Donk Co. [DONK]" ,
54
+ CurrentPrice = 90f ,
55
+ BasePrice = 90f ,
56
+ PriceHistory = [ 90f , 90f , 90f , 90f , 90f ] ,
41
57
} ,
42
58
} ;
43
59
@@ -51,7 +67,7 @@ public sealed partial class StationStockMarketComponent : Component
51
67
/// The interval at which the stock market updates
52
68
/// </summary>
53
69
[ DataField ]
54
- public TimeSpan UpdateInterval = TimeSpan . FromSeconds ( 10 ) ; // 5 minutes
70
+ public TimeSpan UpdateInterval = TimeSpan . FromSeconds ( 600 ) ; // 10 minutes
55
71
56
72
/// <summary>
57
73
/// The <see cref="IGameTiming.CurTime"/> timespan of next update.
0 commit comments