diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index b0ea33b0a7e..171f780febb 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -58,8 +58,7 @@ var/datum/vueui_module/player_panel/global_player_panel LAZYINITLIST(data["players"]) if(LAZYLEN(data["players"]) != mobs.len) - var/list/players = data["players"] - data["players"] = players.Cut() + data["players"] = list() for(var/mob/M in mobs) var/ref = "\ref[M]" LAZYINITLIST(data["players"][ref]) diff --git a/code/modules/modular_computers/file_system/programs/generic/records.dm b/code/modules/modular_computers/file_system/programs/generic/records.dm index 1dd75b44d0c..bf08373cee1 100644 --- a/code/modules/modular_computers/file_system/programs/generic/records.dm +++ b/code/modules/modular_computers/file_system/programs/generic/records.dm @@ -124,8 +124,7 @@ LAZYINITLIST(data["record_viruses"]) if(authenticated) if(LAZYLEN(data["allrecords"]) != SSrecords.records.len) - var/list/allrecords = data["allrecords"] - data["allrecords"] = allrecords.Cut() + data["allrecords"] = list() for(var/tR in sortRecord(SSrecords.records)) var/datum/record/general/R = tR LAZYINITLIST(data["allrecords"][R.id]) @@ -142,8 +141,7 @@ if(records_type & RECORD_LOCKED) if(LAZYLEN(data["allrecords_locked"]) != SSrecords.records_locked.len) - var/list/allrecords_locked = data["allrecords_locked"] - data["allrecords_locked"] = allrecords_locked.Cut() + data["allrecords_locked"] = list() for(var/tR in sortRecord(SSrecords.records_locked)) var/datum/record/general/R = tR LAZYINITLIST(data["allrecords_locked"][R.id]) @@ -153,8 +151,7 @@ if(records_type & RECORD_VIRUS) if(LAZYLEN(data["record_viruses"]) != SSrecords.viruses.len) - var/list/record_viruses = data["record_viruses"] - data["record_viruses"] = record_viruses.Cut() + data["record_viruses"] = list() for(var/tR in sortRecord(SSrecords.viruses)) var/datum/record/virus/R = tR LAZYINITLIST(data["record_viruses"]["[R.id]"]) diff --git a/html/changelogs/dreamcheckerfixes.yml b/html/changelogs/dreamcheckerfixes.yml new file mode 100644 index 00000000000..d0967b4039c --- /dev/null +++ b/html/changelogs/dreamcheckerfixes.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: mikomyazaki + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Records console UIs should now display properly."