From c0e70ef1932d6681437e14ae891be13b7ecfaa19 Mon Sep 17 00:00:00 2001 From: Braeden Date: Sun, 27 Oct 2024 17:34:41 -0400 Subject: [PATCH] fix: Particles: onMouseEnter -> onMouseOver --- js/technical/particleSystem.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/technical/particleSystem.js b/js/technical/particleSystem.js index ba5a4b8..d84dbd2 100644 --- a/js/technical/particleSystem.js +++ b/js/technical/particleSystem.js @@ -10,7 +10,7 @@ function makeParticles(data, amount=1, type = "normal") { switch(thing) { case 'onClick': // Functions that should be copied over - case 'onMouseEnter': + case 'onMouseOver': case 'onMouseLeave': case 'update': particle[thing] = data[thing]