diff --git a/assets/boykisser_64x64.png b/assets/boykisser_64x64.png
new file mode 100644
index 0000000..3f5dd75
Binary files /dev/null and b/assets/boykisser_64x64.png differ
diff --git a/global/loadingScreen.css b/global/loadingScreen.css
index 0523180..5ced997 100644
--- a/global/loadingScreen.css
+++ b/global/loadingScreen.css
@@ -33,8 +33,8 @@
#loadingText {
position: absolute;
bottom: 0%;
- left: calc(50% - 40vw);
- width: 80vw;
+ left: calc(50% - 45vw);
+ width: 90vw;
text-align: center;
font-size: 1.5rem;
word-break: break-word;
diff --git a/global/loadingScreen.js b/global/loadingScreen.js
index a9a5be5..47c828f 100644
--- a/global/loadingScreen.js
+++ b/global/loadingScreen.js
@@ -32,7 +32,18 @@ let selectedTip = "undefined"
function newTip() {
- selectedTip = tipsJson[randomIntFrom0(tipsJson.length)]
+ if (randomIntFrom0(1000) == 0) {
+ // If you snitch this easter egg code
+ // then I'll close the source and
+ // permanently remove the easter egg.
+ selectedTip = `You like kissing boys, don't you?
+
`
+ }
+ else {
+ selectedTip = tipsJson[randomIntFrom0(tipsJson.length)]
+ }
+
debugPrint("new tip", selectedTip)
}