Skip to content

Commit f029b72

Browse files
re-remove console limiting options
1 parent 9ff691b commit f029b72

File tree

2 files changed

+0
-27
lines changed

2 files changed

+0
-27
lines changed

app/Http/Requests/Admin/Settings/AdvancedSettingsFormRequest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ public function rules()
1919
'recaptcha:website_key' => 'required|string|max:191',
2020
'pterodactyl:guzzle:timeout' => 'required|integer|between:1,60',
2121
'pterodactyl:guzzle:connect_timeout' => 'required|integer|between:1,60',
22-
'pterodactyl:console:count' => 'required|integer|min:1',
23-
'pterodactyl:console:frequency' => 'required|integer|min:10',
2422
'pterodactyl:client_features:allocations:enabled' => 'required|in:true,false',
2523
'pterodactyl:client_features:allocations:range_start' => 'required|integer|between:1024,65535',
2624
'pterodactyl:client_features:allocations:range_end' => 'required|integer|between:1024,65535',
@@ -38,8 +36,6 @@ public function attributes()
3836
'recaptcha:website_key' => 'reCAPTCHA Website Key',
3937
'pterodactyl:guzzle:timeout' => 'HTTP Request Timeout',
4038
'pterodactyl:guzzle:connect_timeout' => 'HTTP Connection Timeout',
41-
'pterodactyl:console:count' => 'Console Message Count',
42-
'pterodactyl:console:frequency' => 'Console Frequency Tick',
4339
'pterodactyl:client_features:allocations:enabled' => 'Auto Create Allocations Enabled',
4440
'pterodactyl:client_features:allocations:range_start' => 'Starting Port',
4541
'pterodactyl:client_features:allocations:range_end' => 'Ending Port',

resources/views/admin/settings/advanced.blade.php

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -82,29 +82,6 @@
8282
</div>
8383
</div>
8484
</div>
85-
<div class="box">
86-
<div class="box-header with-border">
87-
<h3 class="box-title">Console</h3>
88-
</div>
89-
<div class="box-body">
90-
<div class="row">
91-
<div class="form-group col-md-6">
92-
<label class="control-label">Message Count</label>
93-
<div>
94-
<input type="number" required class="form-control" name="pterodactyl:console:count" value="{{ old('pterodactyl:console:count', config('pterodactyl.console.count')) }}">
95-
<p class="text-muted small">The number of messages to be pushed to the console per frequency tick.</p>
96-
</div>
97-
</div>
98-
<div class="form-group col-md-6">
99-
<label class="control-label">Frequency Tick</label>
100-
<div>
101-
<input type="number" required class="form-control" name="pterodactyl:console:frequency" value="{{ old('pterodactyl:console:frequency', config('pterodactyl.console.frequency')) }}">
102-
<p class="text-muted small">The amount of time in milliseconds between each console message sending tick.</p>
103-
</div>
104-
</div>
105-
</div>
106-
</div>
107-
</div>
10885
<div class="box">
10986
<div class="box-header with-border">
11087
<h3 class="box-title">Automatic Allocation Creation</h3>

0 commit comments

Comments
 (0)