stuff and junk and things

This commit is contained in:
Kim Ravn Hansen
2025-09-05 17:57:09 +02:00
parent 8bcbdbfe35
commit 1720db9eb7
14 changed files with 460 additions and 333 deletions

View File

@@ -1,5 +1,5 @@
export function withSides(sides) {
const r = Math.random()
const r = Math.random();
return Math.floor(r * sides) + 1;
}
@@ -10,4 +10,3 @@ export function d6() {
export function d8() {
return withSides(8);
}