diff --git a/code/game/machinery/computer/dna_console.dm b/code/game/machinery/computer/dna_console.dm index 301792a56d9..109f5032237 100644 --- a/code/game/machinery/computer/dna_console.dm +++ b/code/game/machinery/computer/dna_console.dm @@ -406,11 +406,11 @@ if(mutation == current_mutation) class = "selected" if(location > DNA_MUTATION_BLOCKS) - temp_html += "Extra Mutation" + temp_html += "Extra Mutation" else if(mutation in stored_research.discovered_mutations) - temp_html += "Discovered Mutation" + temp_html += "Discovered Mutation" else - temp_html += "Undiscovered" + temp_html += "Undiscovered" return temp_html /obj/machinery/computer/scan_consolenew/proc/display_sequence(mutation, storage_slot) //Storage slot is for when viewing from the stored mutations diff --git a/code/modules/client/asset_cache.dm b/code/modules/client/asset_cache.dm index 3a218672b23..34313901d05 100644 --- a/code/modules/client/asset_cache.dm +++ b/code/modules/client/asset_cache.dm @@ -700,7 +700,7 @@ GLOBAL_LIST_EMPTY(asset_datums) /datum/asset/simple/genetics assets = list( - "dna_discovered.png" = 'html/dna_discovered.png', - "dna_undiscovered.png" = 'html/dna_undiscovered.png', - "dna_extra.png" = 'html/dna_extra.png' + "dna_discovered.gif" = 'html/dna_discovered.gif', + "dna_undiscovered.gif" = 'html/dna_undiscovered.gif', + "dna_extra.gif" = 'html/dna_extra.gif' ) diff --git a/html/dna_discovered.gif b/html/dna_discovered.gif new file mode 100644 index 00000000000..bc6b75f2f98 Binary files /dev/null and b/html/dna_discovered.gif differ diff --git a/html/dna_discovered.png b/html/dna_discovered.png deleted file mode 100644 index 86e569fc34c..00000000000 Binary files a/html/dna_discovered.png and /dev/null differ diff --git a/html/dna_extra.gif b/html/dna_extra.gif new file mode 100644 index 00000000000..c92218a6613 Binary files /dev/null and b/html/dna_extra.gif differ diff --git a/html/dna_extra.png b/html/dna_extra.png deleted file mode 100644 index 2fda1339e15..00000000000 Binary files a/html/dna_extra.png and /dev/null differ diff --git a/html/dna_undiscovered.gif b/html/dna_undiscovered.gif new file mode 100644 index 00000000000..a3c182a4a1c Binary files /dev/null and b/html/dna_undiscovered.gif differ diff --git a/html/dna_undiscovered.png b/html/dna_undiscovered.png deleted file mode 100644 index 7184f097ac3..00000000000 Binary files a/html/dna_undiscovered.png and /dev/null differ