forked from pelican-eggs/eggs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tModLoader variables fixed typing/restrictions
Fixes issues introduced in pelican-eggs#1282
- Loading branch information
1 parent
1839dad
commit b915006
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
"meta": { | ||
"version": "PTDL_v1" | ||
}, | ||
"exported_at": "2021-08-02T22:03:34-04:00", | ||
"exported_at": "2021-08-02T22:44:50-04:00", | ||
"name": "tModloader", | ||
"author": "[email protected]", | ||
"description": "tModLoader is essentially a mod that provides a way to load your own mods without having to work directly with Terraria's source code itself. This means you can easily make mods that are compatible with other people's mods, save yourself the trouble of having to decompile and recompile Terraria.exe, and escape from having to understand all of the obscure \"intricacies\" of Terraria's source code. It is made to work for Terraria 1.3+.", | ||
|
@@ -85,7 +85,7 @@ | |
"default_value": "0", | ||
"user_viewable": true, | ||
"user_editable": true, | ||
"rules": "required|int|max:1" | ||
"rules": "required|numeric|digits_between:0,1" | ||
}, | ||
{ | ||
"name": "Server Password", | ||
|
@@ -112,7 +112,7 @@ | |
"default_value": "1", | ||
"user_viewable": true, | ||
"user_editable": true, | ||
"rules": "required|int|max:1" | ||
"rules": "required|numeric|digits_between:1,5" | ||
} | ||
] | ||
} |