Skip to content

Commit

Permalink
fix: pixel shift using deprecated var
Browse files Browse the repository at this point in the history
  • Loading branch information
Furrior committed Sep 5, 2024
1 parent c78ec7a commit 10fe140
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modular_bandastation/pixel_shift/code/layer_shift.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set name = "Shift Layer Upwards"
set category = "IC"

if(incapacitated())
if(build_incapacitated())
to_chat(src, span_warning("You can't do that right now!"))
return

Expand All @@ -23,7 +23,7 @@
set name = "Shift Layer Downwards"
set category = "IC"

if(incapacitated())
if(build_incapacitated())
to_chat(src, span_warning("You can't do that right now!"))
return

Expand Down

0 comments on commit 10fe140

Please sign in to comment.