commit 255d8442407842841712f4cae0966969129a76a9 parent 3e9ba2f9cc7b5e954a4d757fc29572bbce397e99 Author: fundamental <mark.d.mccurry@gmail.com> Date: Tue, 13 Dec 2022 22:13:04 -0500 Don't consider notes from disabled kits valid Diffstat:
M | src/Misc/Part.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Misc/Part.cpp b/src/Misc/Part.cpp @@ -1506,7 +1506,7 @@ uint8_t Part::Kit::sendto(void) const bool Part::Kit::validNote(char note) const { - return !Pmuted && inRange((uint8_t)note, Pminkey, Pmaxkey); + return !Pmuted && Penabled && inRange((uint8_t)note, Pminkey, Pmaxkey); } }