Automatically convert lobby code to lowercase
parent
f4fb7af669
commit
863d702471
|
@ -98,7 +98,7 @@ function showJoinPrompt() {
|
||||||
}
|
}
|
||||||
document.getElementById("lobbyCode").addEventListener("input", ({ target: input }) => {
|
document.getElementById("lobbyCode").addEventListener("input", ({ target: input }) => {
|
||||||
if (input.value.length !== 5) return;
|
if (input.value.length !== 5) return;
|
||||||
currentCode = input.value;
|
currentCode = input.value.toLowerCase();
|
||||||
input.value = "";
|
input.value = "";
|
||||||
WindowManager.closeWindow("lobbyJoinMenu");
|
WindowManager.closeWindow("lobbyJoinMenu");
|
||||||
isActive = true;
|
isActive = true;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
const fx_version = '0.6.6.1'; // FX Client Version
|
const fx_version = '0.6.6.2'; // FX Client Version
|
||||||
const fx_update = 'Oct 15'; // FX Client Last Updated
|
const fx_update = 'Oct 15'; // FX Client Last Updated
|
||||||
|
|
||||||
import settingsManager from './settings.js';
|
import settingsManager from './settings.js';
|
||||||
|
|
Loading…
Reference in New Issue