From 47be101f222d67ce094ddfe19a36cfbb6ccec7a0 Mon Sep 17 00:00:00 2001 From: Aevann Date: Mon, 9 Oct 2023 19:00:44 +0300 Subject: [PATCH] fix stab award again --- files/assets/events/homoween/css/stab.css | 2 +- files/assets/events/homoween/js/blood.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/files/assets/events/homoween/css/stab.css b/files/assets/events/homoween/css/stab.css index 4c2754976..fabeb37d0 100644 --- a/files/assets/events/homoween/css/stab.css +++ b/files/assets/events/homoween/css/stab.css @@ -1,3 +1,3 @@ canvas.sketch { - opacity: 0.1; + opacity: 0.2; } diff --git a/files/assets/events/homoween/js/blood.js b/files/assets/events/homoween/js/blood.js index 7df7d2412..bcc71f847 100644 --- a/files/assets/events/homoween/js/blood.js +++ b/files/assets/events/homoween/js/blood.js @@ -15,7 +15,7 @@ let blood = Sketch.create({autoclear: false, autopause: false}), maxDrops = dropCount+1, Drop = function() { this.x = random(0,blood.width); - this.radius = random(5,10); + this.radius = random(7,12); this.y = -this.radius - random(50,100); this.vy = this.radius/6; this.r = ~~random(240,255);