@@ -6,7 +6,7 @@ class AT_MiscWindow extends UWindowPageWindow config(AdminTool);
6
6
7
7
var UWindowSmallButton NetSpeedsButton ;
8
8
var UWindowSmallButton IPsButton ;
9
- var UWindowSmallButton ForceStartButton ;
9
+ var UWindowSmallButton ShowDemosButton ;
10
10
var UWindowSmallButton RedeemerButton ;
11
11
var UWindowSmallButton DamageAmpButton ;
12
12
var UWindowSmallButton InvisibilityButton ;
@@ -38,8 +38,8 @@ function Created()
38
38
IPsButton .SetText ("Show" );
39
39
40
40
Top += Height ;
41
- ForceStartButton = UWindowSmallButton (CreateControl (class 'UWindowSmallButton' , 114.0 ,50.0 ,200.0 ,35.0 ));
42
- ForceStartButton .SetText ("Force " );
41
+ ShowDemosButton = UWindowSmallButton (CreateControl (class 'UWindowSmallButton' , 114.0 ,50.0 ,200.0 ,35.0 ));
42
+ ShowDemosButton .SetText ("Show " );
43
43
44
44
Top += Height ;
45
45
RedeemerButton = UWindowSmallButton (CreateControl (class 'UWindowSmallButton' , 114.0 ,70.0 ,200.0 ,35.0 ));
@@ -103,7 +103,7 @@ function Paint(Canvas C, float X, float Y)
103
103
104
104
WriteText (C , "Show Netspeeds" , 12 );
105
105
WriteText (C , "Show IPs" , 32 );
106
- WriteText (C , "Force Start: " , 52 );
106
+ WriteText (C , "Show Demos " , 52 );
107
107
WriteText (C , "Redeemer:" , 72 );
108
108
WriteText (C , "Big Keg O' Health:" , 92 );
109
109
WriteText (C , "Invisibility:" , 112 );
@@ -128,10 +128,10 @@ function Notify(UWindowDialogControl C, byte E)
128
128
GetPlayerOwner ().ClientMessage ("IPs:" );
129
129
GetPlayerOwner ().ConsoleCommand ("mutate pureshowips" );
130
130
return ;
131
- case ForceStartButton :
131
+ case ShowDemosButton :
132
132
if (!AdminCheck (True )) return ;
133
- GetPlayerOwner ().ClientMessage ("Admin is trying to force game to Start " );
134
- GetPlayerOwner ().ConsoleCommand ("mutate pureforcestart " );
133
+ GetPlayerOwner ().ClientMessage ("Listing which players are recording demos: " );
134
+ GetPlayerOwner ().ConsoleCommand ("mutate pureshowdemos " );
135
135
return ;
136
136
case RedeemerButton :
137
137
if (!AdminCheck (True )) return ;
@@ -184,7 +184,7 @@ function Tick( float DeltaTime )
184
184
{
185
185
NetSpeedsButton .bDisabled = False ;
186
186
IPsButton .bDisabled = False ;
187
- ForceStartButton .bDisabled = False ;
187
+ ShowDemosButton .bDisabled = False ;
188
188
RedeemerButton .bDisabled = False ;
189
189
DamageAmpButton .bDisabled = False ;
190
190
InvisibilityButton .bDisabled = False ;
@@ -198,7 +198,7 @@ function Tick( float DeltaTime )
198
198
{
199
199
NetSpeedsButton .bDisabled = True ;
200
200
IPsButton .bDisabled = True ;
201
- ForceStartButton .bDisabled = True ;
201
+ ShowDemosButton .bDisabled = True ;
202
202
RedeemerButton .bDisabled = True ;
203
203
DamageAmpButton .bDisabled = True ;
204
204
InvisibilityButton .bDisabled = True ;
0 commit comments