Skip to content

Commit

Permalink
[MIRROR] Makes heads on pikes render correctly. [MDB IGNORE] (#756)
Browse files Browse the repository at this point in the history
* Makes heads on pikes render correctly. (#79863)

---------

Co-authored-by: SkyratBot <[email protected]>
Co-authored-by: lizardqueenlexi <[email protected]>
  • Loading branch information
3 people authored Nov 21, 2023
1 parent 81a2f9a commit 2e3f0a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/game/objects/structures/headpike.dm
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@
. = ..()
if(!victim)
return
var/mutable_appearance/MA = new()
MA.copy_overlays(victim)
MA.pixel_y = 12
MA.pixel_x = pixel_x
. += victim
var/mutable_appearance/appearance = new()
appearance.copy_overlays(victim)
appearance.pixel_y = 12
appearance.layer = layer + 0.1
. += appearance

/obj/structure/headpike/Exited(atom/movable/gone, direction)
. = ..()
Expand Down

0 comments on commit 2e3f0a3

Please sign in to comment.