new pixel every 5s

This commit is contained in:
Kay Faraday 2024-08-04 14:37:38 -07:00
parent d931ab8fe4
commit a93e16c505
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
# Canvas # Canvas
This is a fork of https://git.sc07.company/sc07/canvas, as deployed on https://mural.freak.university. The only major change is to whitelist "pedi" instances and block everyone else. This is a fork of https://git.sc07.company/sc07/canvas, as deployed on https://mural.freak.university.
## Changes
- Whitelist "pedi" instances and block everyone else.
- Change the pixel delay to an even 5 seconds.

View File

@ -26,6 +26,6 @@ export const CanvasLib = new (class {
pixelNumber = 1 pixelNumber = 1
} }
return (2.5 * Math.sqrt(100 + 11.96) + 6.5) * 1 * pixelNumber; return 5;
} }
})(); })();