npm format

This commit is contained in:
Gabriel Hawk 2022-06-13 01:13:36 -05:00
parent 1e2e42af75
commit 60c6536f8e

@ -79,10 +79,10 @@ export function DeleteServer(serverkey: string): void {
export function ipExists(ip: string): boolean {
for (const hostName in AllServers) {
if (AllServers[hostName].ip === ip) {
return true
return true;
}
}
return false
return false;
}
export function createUniqueRandomIp(): string {