Skip to content

Commit

Permalink
bomb cooldown
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhaego committed Nov 11, 2024
1 parent d508a4b commit d247bcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion public/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -42030,7 +42030,6 @@ const phrases = [
'dont let your memes be dreams'
];
const randomPhrase = phrases[Math.floor(Math.random() * phrases.length)];
const [lastBombDetected, setLastBombDetected] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(null);
// Original Better AoD by Jamie
// alt1://addapp/https://cgyi4.csb.app/appconfig.json
// https://cgyi4.csb.app/
Expand Down Expand Up @@ -42063,6 +42062,7 @@ const secondsForPoolToPop = 22;
const poolReminderSeconds = [3, 2, 1];
(0,_helpers__WEBPACK_IMPORTED_MODULE_2__.displayDetectionMessage)("Better AoD starting", 5000);
function App() {
const [lastBombDetected, setLastBombDetected] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(null);
const [infoWindow, setInfoWindow] = (0,react__WEBPACK_IMPORTED_MODULE_0__.useState)(null);
const showInfo = () => {
const newWindow = window.open("", "Info", "width=350,height=500");
Expand Down
6 changes: 3 additions & 3 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@ const phrases = [
];
const randomPhrase = phrases[Math.floor(Math.random() * phrases.length)];


const [lastBombDetected, setLastBombDetected] = useState<number | null>(null);

// Original Better AoD by Jamie
// alt1://addapp/https://cgyi4.csb.app/appconfig.json
// https://cgyi4.csb.app/
Expand Down Expand Up @@ -78,6 +75,9 @@ const poolReminderSeconds = [3, 2, 1]
displayDetectionMessage("Better AoD starting", 5000)

function App() {

const [lastBombDetected, setLastBombDetected] = useState<number | null>(null);

const [infoWindow, setInfoWindow] = useState<Window | null>(null)
const showInfo = () => {
const newWindow = window.open("", "Info", "width=350,height=500")
Expand Down

0 comments on commit d247bcb

Please sign in to comment.