We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The genes are currently stored as regular strings in propertyDefinitionMaps as shown here,
Genome/src/main/java/org/terasology/genome/genomeMap/GeneIndexGenomeMap.java
Line 30 in 2e274f5
Name
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The genes are currently stored as regular strings in propertyDefinitionMaps as shown here,
Genome/src/main/java/org/terasology/genome/genomeMap/GeneIndexGenomeMap.java
Line 30 in 2e274f5
This could lead to problems during retrieval of trait values as there could be mismatch in upper and lower case. Using the
Name
structure from Gestalt (https://github.com/MovingBlocks/gestalt/blob/develop/gestalt-module/src/main/java/org/terasology/gestalt/naming/Name.java) would avoid unnecessary checks and modifications to Strings and work perfectly in this situation.The text was updated successfully, but these errors were encountered: