Skip to content

Commit

Permalink
Add OnlineFlags to schema
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed Feb 10, 2022
1 parent 31f3e9a commit 07d4a19
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/schema.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Validators from './validators';

export default {
'V5.2.3.0+': {
'V5.2.3.3+': {
asf: [
{
legend: 'schema.basic',
Expand Down Expand Up @@ -550,6 +550,19 @@ export default {
label: 'CustomGamePlayedWhileIdle',
field: 'CustomGamePlayedWhileIdle'
},
{
type: 'InputFlag',
label: 'OnlineFlags',
field: 'OnlineFlags',
values: [
{ value: 0, name: 'None' },
{ value: 256, name: 'ClientTypeWeb' },
{ value: 512, name: 'ClientTypeMobile' },
{ value: 1024, name: 'ClientTypeTenfoot' },
{ value: 2048, name: 'ClientTypeVR' }
],
defaultValue: 0
},
{
type: 'InputSelect',
label: 'OnlineStatus',
Expand Down

0 comments on commit 07d4a19

Please sign in to comment.