[MIRROR] move those to upper case explicitly (#11898)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-11-02 09:42:30 -07:00
committed by GitHub
parent 10b465d6a3
commit c379f10074
3 changed files with 4 additions and 4 deletions

View File

@@ -667,9 +667,9 @@ GLOBAL_LIST_EMPTY_TYPED(dna_genes_bad, /datum/gene/trait)
unique_enzymes = md5(character.real_name) unique_enzymes = md5(character.real_name)
else else
if(length(uni_identity) != 3*DNA_UI_LENGTH) if(length(uni_identity) != 3*DNA_UI_LENGTH)
uni_identity = "00600200A00E0110148FC01300B0095BD7FD3F4" uni_identity = "00600200a00e0110148fc01300b0095bd7fd3f4"
if(length(struc_enzymes)!= 3*DNA_SE_LENGTH) if(length(struc_enzymes)!= 3*DNA_SE_LENGTH)
struc_enzymes = "43359156756131E13763334D1C369012032164D4FE4CD61544B6C03F251B6C60A42821D26BA3B0FD6" struc_enzymes = "43359156756131e13763334d1c369012032164d4fe4cd61544b6c03f251b6c60a42821d26ba3b0fd6"
// BACK-COMPAT! // BACK-COMPAT!
// Initial DNA setup. I'm kind of wondering why the hell this doesn't just call the above. // Initial DNA setup. I'm kind of wondering why the hell this doesn't just call the above.

View File

@@ -13,7 +13,7 @@ export const DNAModifierBlocks = (props: {
const { dnaString, selectedBlock, selectedSubblock, blockSize, action } = const { dnaString, selectedBlock, selectedSubblock, blockSize, action } =
props; props;
const characters: string[] = dnaString.split(''); const characters: string[] = dnaString.toUpperCase().split('');
const dnaBlocks: React.JSX.Element[] = []; const dnaBlocks: React.JSX.Element[] = [];
for (let block = 0; block < characters.length; block += blockSize) { for (let block = 0; block < characters.length; block += blockSize) {
const realBlock: number = block / blockSize + 1; const realBlock: number = block / blockSize + 1;

View File

@@ -91,7 +91,7 @@ export const DNAModifierOccupant = (props: { isDNAInvalid: BooleanLike }) => {
</LabeledList.Item> </LabeledList.Item>
<LabeledList.Item label="Unique Enzymes"> <LabeledList.Item label="Unique Enzymes">
{data.occupant.uniqueEnzymes ? ( {data.occupant.uniqueEnzymes ? (
data.occupant.uniqueEnzymes data.occupant.uniqueEnzymes.toUpperCase()
) : ( ) : (
<Box color="bad"> <Box color="bad">
<Icon name="exclamation-circle" /> <Icon name="exclamation-circle" />