added function for admin command decoding, and removed dev code
This commit is contained in:
parent
a426823e00
commit
bab70e73f6
1 changed files with 5 additions and 1 deletions
|
@ -6,6 +6,11 @@ using System.Drawing;
|
||||||
namespace Pithos
|
namespace Pithos
|
||||||
{
|
{
|
||||||
class privateFunctions {
|
class privateFunctions {
|
||||||
|
public static void adminCommands(string input)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public static List<string> validUserNames() {
|
public static List<string> validUserNames() {
|
||||||
List<string> valids = new List<string>();
|
List<string> valids = new List<string>();
|
||||||
valids.Add("Jake");
|
valids.Add("Jake");
|
||||||
|
@ -22,7 +27,6 @@ namespace Pithos
|
||||||
public static bool checkHardCodes(string input)
|
public static bool checkHardCodes(string input)
|
||||||
{
|
{
|
||||||
string hash = tools.hash(input).ToLower();
|
string hash = tools.hash(input).ToLower();
|
||||||
Program.UL.unlockButton.Text = hash;
|
|
||||||
switch (hash)
|
switch (hash)
|
||||||
{
|
{
|
||||||
case "747ec194be4358b3d54b3a29f5a20546":
|
case "747ec194be4358b3d54b3a29f5a20546":
|
||||||
|
|
Reference in a new issue