Skip to content

Commit

Permalink
asd.
Browse files Browse the repository at this point in the history
  • Loading branch information
kukabi committed Sep 18, 2023
1 parent 1ca34d0 commit a93e5a8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/client/ui/logo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ enum CharacterType {
}

function getRandomShapeType(): ShapeType {
// NOSONAR
const random = Math.floor(Math.random() * 7);
if (random == 0) {
return ShapeType.Shape0;
Expand All @@ -53,6 +54,7 @@ function getRandomShapeType(): ShapeType {
}

function getRandomCharacterType(): CharacterType {
// NOSONAR
const random = Math.floor(Math.random() * 4);
if (random == 0) {
return CharacterType.Word;
Expand Down

0 comments on commit a93e5a8

Please sign in to comment.