diff options
author | Brian Cully <bjc@kublai.com> | 2021-02-20 17:04:31 -0500 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2021-02-20 17:04:31 -0500 |
commit | d6f933460b630ebc68933370e71c427a84c0334e (patch) | |
tree | ecdb6e8cf9e16445ff946f89602e5527c0964b4f | |
parent | 267447f1c8e56766810a17a634f65e165ee8cd9b (diff) | |
download | molsim2-d6f933460b630ebc68933370e71c427a84c0334e.tar.gz molsim2-d6f933460b630ebc68933370e71c427a84c0334e.zip |
You clone the genome, not nucleotide.
-rw-r--r-- | rules.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -85,7 +85,7 @@ class NucleotideSelect { if (this.rules.die.value > this.rules.currentGenome.length) { this.rules.currentGenome.selectedNucleotide = undefined this.rules.next(new ShowError(this.rules, this, - `You need to <em>clone</em> this nucleotide.`)) + `You need to <em>clone</em> this genome.`)) return } else if (i != this.rules.die.value) { this.rules.currentGenome.selectedNucleotide = undefined |