mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 04:27:35 +01:00
Revert the workaround for byond version 1537. Bump min version for travis (#15118)
* Revert "Makes code 513.1537 compliant (#15093)"
This reverts commit 5ccbbf1192.
* bump version
This commit is contained in:
@@ -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
|
||||
|
||||
+1
-2
@@ -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()
|
||||
|
||||
@@ -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, "<span class='warning'>[error_message]</span>")
|
||||
if("claim")
|
||||
|
||||
@@ -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))
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user