Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit a2e26ea

Browse files
genetics
1 parent c7fb868 commit a2e26ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/game/machinery/computer/dna_console.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@
495495
if((newgene == "J") && (jokerready < world.time))
496496
var/truegenes = GET_SEQUENCE(path)
497497
newgene = truegenes[genepos]
498-
jokerready = world.time + JOKER_TIMEOUT - (JOKER_UPGRADE * (connected_scanner.precision_coeff + (user.get_skill(SKILL_SCIENCE) / 2) - 1))
498+
jokerready = world.time + (JOKER_TIMEOUT - (JOKER_UPGRADE * connected_scanner.precision_coeff)) * (8 - user.get_skill(SKILL_SCIENCE)) / 8
499499

500500
// If the gene is an X, we want to update the default genes with the new
501501
// X to allow highlighting logic to work on the tgui interface.
@@ -1933,7 +1933,7 @@
19331933
var/datum/mutation/human/HM = GET_INITIALIZED_MUTATION(path)
19341934
stored_research.discovered_mutations += path
19351935
say("Successfully discovered [HM.name].")
1936-
user.add_exp(SKILL_SCIENCE, EXPERIENCE_PER_LEVEL / 2)
1936+
user.add_exp(SKILL_SCIENCE, 100)
19371937
return TRUE
19381938

19391939
return FALSE

0 commit comments

Comments
 (0)