diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-05-18 20:18:38 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-05-18 20:18:38 -0700 |
| commit | 965b766ba955b56470ab9fc2c1ee68b420d9a863 (patch) | |
| tree | e5db89c2dfe489de99eebc55bd5b5c91c62ac474 | |
| parent | 6b262e8cb96484e134adbbc4910ad3a36dc6830e (diff) | |
chuni_tachi_to_tachi: add check for clear lamp
| -rw-r--r-- | chuni/tachi/tachi_to_tachi_pb.js | 3 | ||||
| -rw-r--r-- | chuni/tachi/tachi_to_tachi_session.js | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/chuni/tachi/tachi_to_tachi_pb.js b/chuni/tachi/tachi_to_tachi_pb.js index 50734f0..43355ee 100644 --- a/chuni/tachi/tachi_to_tachi_pb.js +++ b/chuni/tachi/tachi_to_tachi_pb.js @@ -53,6 +53,9 @@ javascript:void(function () { noteLamp = "FULL COMBO"; clearLamp = "CLEAR"; } + if (lamp.includes("CLEAR")) { + clearLamp = "CLEAR"; + } if (lamp.includes("ALL JUSTICE")) { noteLamp = "ALL JUSTICE"; clearLamp = "CLEAR"; diff --git a/chuni/tachi/tachi_to_tachi_session.js b/chuni/tachi/tachi_to_tachi_session.js index 4791efb..e360e8a 100644 --- a/chuni/tachi/tachi_to_tachi_session.js +++ b/chuni/tachi/tachi_to_tachi_session.js @@ -54,6 +54,9 @@ javascript: void (function () { noteLamp = "FULL COMBO"; clearLamp = "CLEAR"; } + if (lamp.includes("CLEAR")) { + clearLamp = "CLEAR"; + } if (lamp.includes("ALL JUSTICE")) { noteLamp = "ALL JUSTICE"; clearLamp = "CLEAR"; |
