diff --git a/_build_dependencies.sh b/_build_dependencies.sh index 779919286d9..be4b390a6d3 100644 --- a/_build_dependencies.sh +++ b/_build_dependencies.sh @@ -6,6 +6,6 @@ export NODE_VERSION=12 # Byond Major export BYOND_MAJOR=513 # Byond Minor -export BYOND_MINOR=1537 +export BYOND_MINOR=1528 # For the RUSTG library. Not actually installed by CI but kept as a reference export RUSTG_VERSION=2.1-P diff --git a/code/datums/mind.dm b/code/datums/mind.dm index 59def2e5533..5f2b39d1aea 100644 --- a/code/datums/mind.dm +++ b/code/datums/mind.dm @@ -1248,8 +1248,7 @@ if(has_antag_datum(/datum/antagonist/traitor/contractor)) return var/datum/antagonist/traitor/T = has_antag_datum(/datum/antagonist/traitor) - var/memory - memory = T?.antag_memory // Need to preserve the codewords and such + var/memory = T?.antag_memory // Need to preserve the codewords and such // Replace the traitor datum by a contractor one remove_antag_datum(/datum/antagonist/traitor) C = new() diff --git a/code/modules/antagonists/traitor/contractor/datums/contractor_hub_ui.dm b/code/modules/antagonists/traitor/contractor/datums/contractor_hub_ui.dm index 718d78e765f..e8e3f4d90e8 100644 --- a/code/modules/antagonists/traitor/contractor/datums/contractor_hub_ui.dm +++ b/code/modules/antagonists/traitor/contractor/datums/contractor_hub_ui.dm @@ -15,8 +15,7 @@ return page = newpage if("extract") - var/error_message - error_message = current_contract?.start_extraction_process(ui_host(), usr) + var/error_message = current_contract?.start_extraction_process(ui_host(), usr) if(length(error_message)) to_chat(usr, "[error_message]") if("claim") diff --git a/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm b/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm index a1be560c8e5..77fb0cd0c5b 100644 --- a/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm +++ b/code/modules/mob/living/simple_animal/hostile/floorcluwne.dm @@ -368,8 +368,7 @@ /mob/living/simple_animal/hostile/floor_cluwne/proc/Kill(mob/living/carbon/human/H) playsound(H, 'sound/spookoween/scary_horn2.ogg', 100, 0) - var/old_color - old_color = H.client?.color + var/old_color = H.client?.color client_kill_animation(H) for(var/turf/T in orange(H, 4)) diff --git a/code/modules/newscaster/obj/newscaster.dm b/code/modules/newscaster/obj/newscaster.dm index e53e96b0636..d9ac93875f2 100644 --- a/code/modules/newscaster/obj/newscaster.dm +++ b/code/modules/newscaster/obj/newscaster.dm @@ -365,8 +365,7 @@ playsound(loc, 'sound/machines/terminal_insert_disc.ogg', 30, TRUE) else if(issilicon(usr)) var/mob/living/silicon/M = usr - var/datum/picture/selection - selection = M.aiCamera?.selectpicture() + var/datum/picture/selection = M.aiCamera?.selectpicture() if(!selection) return var/obj/item/photo/P = new