Lights Out Minigame Critical Error

dcter12

New Member
Jan 6, 2022
3
1
28
The lights out minigame error comes from the bind window.removeLightsOutMinigame = ui.removeLightsOutMinigame.bind(ui) being missing.

1641439237312.png
Running window.removeLightsOutMinigame = ui.removeLightsOutMinigame.bind(ui) in the chrome web console resolves the issue.

It simply needs to be added in case 34 of your ui bind function. After a beautifier that's around line 163012 with the fix shown.
1641439331041.png
 
Last edited:
  • Like
Reactions: lowercase_donkey

Katz007

Well-Known Member
Mar 23, 2021
224
5
38
Can confirm it will crash after winning the mini game.

Message: window.removeLightsOutMinigame is not a function

Stack: f@https://www.fenoxo.com/play/TiTS/backer/main.4c2651f4.js:1:10271592 u@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:284904 d@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:285047 64448/y/<@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:285193 y@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:285279 ut@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:300795 it@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:300605 lt@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:300963 ht@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:302170 L@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:398970 U@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:286602 Jt@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:308127 Yt@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:307345 60053/t.unstable_runWithPriority@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:428732 $o@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:329668 M@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:398747 Xt@https://www.fenoxo.com/play/TiTS/backer/vendors.71d48b8f.js:1:307160
 

lowercase_donkey

Scientist
Apr 27, 2016
1,571
218
The lights out minigame error comes from the bind window.removeLightsOutMinigame = ui.removeLightsOutMinigame.bind(ui) being missing.

View attachment 20282
Running window.removeLightsOutMinigame = ui.removeLightsOutMinigame.bind(ui) in the chrome web console resolves the issue.

It simply needs to be added in case 34 of your ui bind function. After a beautifier that's around line 163012 with the fix shown.
View attachment 20283
Perfect. I'll try to get that added asap.

edit: Fen got a hotfix out, should be good on live now.
 
Last edited:
  • Like
Reactions: dcter12