diff --git a/code/datums/datum.dm b/code/datums/datum.dm index 309002fb38b86..76d6039d2ef96 100644 --- a/code/datums/datum.dm +++ b/code/datums/datum.dm @@ -24,7 +24,7 @@ var/list/list/_signal_procs /// Used to avoid unnecessary refstring creation in Destroy(). - var/tmp/has_state_machine = FALSE + var/has_state_machine = FALSE //[/SIERRA-ADD] // Default implementation of clean-up code. diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm index 9e861cc599a52..c9adce1661d20 100644 --- a/code/game/turfs/simulated/walls.dm +++ b/code/game/turfs/simulated/walls.dm @@ -124,7 +124,7 @@ clear_bulletholes() . = ..(newtype, tell_universe, force_lighting_update, keep_air) var/turf/new_turf = . - for (var/turf/simulated/wall/W as anything in RANGE_TURFS(new_turf, 1)) + for (var/turf/simulated/wall/W in RANGE_TURFS(new_turf, 1)) if (W == src) continue W.update_connections()