fbwg4 fix

This commit is contained in:
BluePotato102
2023-12-20 18:04:32 -06:00
committed by avsc-sid
parent 5104376dd9
commit 464bcf5399
41 changed files with 61 additions and 12 deletions
+8 -8
View File
@@ -350,24 +350,24 @@
"aliases": [],
"categories": []
},
"Fireboy and Watergirl": {
"Fireboy and Watergirl in the Forest Temple": {
"path": "fireboy-and-watergirl",
"aliases": [],
"aliases": ["Fireboy and Watergirl", "Fireboy and Watergirl 1"],
"categories": []
},
"Fireboy and Watergirl 2": {
"Fireboy and Watergirl in the Light Temple": {
"path": "fireboy-and-watergirl-2",
"aliases": [],
"aliases": ["Fireboy and Watergirl 2"],
"categories": []
},
"Fireboy and Watergirl 3": {
"Fireboy and Watergirl in the Ice Temple": {
"path": "fireboy-and-watergirl-3",
"aliases": [],
"aliases": ["Fireboy and Watergirl 3"],
"categories": []
},
"Fireboy and Watergirl 4": {
"Fireboy and Watergirl in the Crystal Temple": {
"path": "fireboy-and-watergirl-4",
"aliases": [],
"aliases": ["Fireboy and Watergirl 4"],
"categories": []
},
"Flash Chess": {
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -17797,7 +17797,7 @@ function() {
}
function g(a, b) {
return '\n <div id="h5branding-background"></div>\n <div id="h5branding-version"></div>\n <div id="h5branding-logo"></div>\n <div id="h5branding-center">\n <div id="h5branding-ad"></div>\n <div id="h5branding-wrapper">\n <img src="'.concat(a, '" />\n <div id="h5branding-bar"></div>\n <button id="h5branding-button" onclick="h5branding.SplashLoader.getInstance().onPlayButtonClick();">Play</button>\n </div>\n </div>\n <div id="h5branding-title">').concat(b, "</div>\n ")
return '\n <div id="h5branding-background"></div>\n <div id="h5branding-version"></div>\n <div id="h5branding-center">\n <div id="h5branding-ad"></div>\n <div id="h5branding-wrapper">\n <img src="'.concat(a, '" />\n <div id="h5branding-bar"></div>\n <button id="h5branding-button" onclick="h5branding.SplashLoader.getInstance().onPlayButtonClick();">Play</button>\n </div>\n </div>\n <div id="h5branding-title">').concat(b, "</div>\n ")
}
var h = "undefined" != typeof globalThis ? globalThis : "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof self ? self : {};
c(function(a, c) {
@@ -39490,7 +39490,7 @@ Object.defineProperty(Phaser.Filter.BevelFilter.prototype, "viewWidth", {
excludeCacheFor: ["cimode"]
}), e.use(this.languageDetector).init(), a = this.getLanguage(), this.font = "font_" + a, this.default_font = "font_en", this.dict = this.supported[a]
}, b.prototype.locale = function(a) {
return this.dict[a] || a + "|locale"
return this.dict[a] || a
}, b.prototype.getLanguage = function() {
var a;
return a = "none" !== "none" ? "none" : this.languageDetector.detect(["navigator"])[0], -1 !== a.indexOf("-") && (a = a.split("-")[0]), this.supported[a] ? a : "en"
+13
View File
@@ -195,6 +195,19 @@ $('#sort').on('change', updateList);
dragElement(document.getElementById('gameButton'));
dragElement(document.getElementById('refresh'));
const sequence = ['ArrowUp', 'ArrowUp', 'ArrowDown', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'ArrowLeft', 'ArrowRight', 'KeyB', 'KeyA', 'Enter'];
let index = 0;
document.addEventListener('keydown', (event) => {
index = (event.code === sequence[index]) ? index + 1 : 0;
if (index === sequence.length) {
alert('No easter egg here');
index = 0;
}
});
/**
* Adds drag functionality to an HTML element.
*