From 5de6b6bfeedde86fa536f3f8adf0cda8900d2409 Mon Sep 17 00:00:00 2001 From: idinium96 <47635037+idinium96@users.noreply.github.com> Date: Fri, 20 May 2022 16:02:52 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix=20"Nether=20Trail"=20effect?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/schema.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/schema.js b/lib/schema.js index fc3fced..45449dc 100644 --- a/lib/schema.js +++ b/lib/schema.js @@ -555,6 +555,11 @@ class Schema { delete obj['orbiting fire']; obj['orbiting fire'] = 33; } + + if (particleName === 'nether trail') { + delete obj['ether trail']; + obj['ether trail'] = 103; + } } previous = particleName; return obj;