Update tgui/packages/tgui/interfaces/common/CrewManifest.js

Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
This commit is contained in:
GDN
2023-08-26 20:39:06 -05:00
committed by GitHub
co-authored by Contrabang
parent 63491227d1
commit 5de07cba58
@@ -29,8 +29,7 @@ const HCC = (role) => {
// Head bold check. Abbreviated to save on 80 char // Head bold check. Abbreviated to save on 80 char
const HBC = (role) => { const HBC = (role) => {
// Return true if they are a head // Return true if they are a head
if (HeadRoles.indexOf(role) !== -1) { return (HeadRoles.indexOf(role) !== -1);
return true;
} }
}; };