Skip to content

Commit

Permalink
All the colors round two (discordia-space#5)
Browse files Browse the repository at this point in the history
* making them colorful

* fixing

* let be commented for now
  • Loading branch information
Evie7056 authored May 1, 2023
1 parent 9e8b9d1 commit 195f31c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cev_eris.dme
Original file line number Diff line number Diff line change
Expand Up @@ -2850,5 +2850,5 @@
#include "proxima\code\game\objects\structures\window.dm"
#include "proxima\code\game\turf\flooring\flooring_decals.dm"
#include "proxima\code\game\objects\effects\misc.dm"
#include "proxima\code\game\objects\items\devices\paint_sprayer.dm"
// #include "proxima\code\game\objects\items\devices\paint_sprayer.dm"
// END_INCLUDE
6 changes: 3 additions & 3 deletions proxima/code/game/objects/items/devices/paint_sprayer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@
return
return

/obj/item/device/floor_painter/proc/paint_wall(/var/atom/A, var/mob/user)
if ((A.can_paint == TRUE) && paint_colour)
A.set_color(paint_color)
/obj/item/device/floor_painter/proc/paint_wall(/turf/simulated/wall/W, var/mob/user)
if ((W.can_paint == TRUE) && paint_colour)
W.set_color(paint_color)
add_fingerprint(user)
. = TRUE

Expand Down

0 comments on commit 195f31c

Please sign in to comment.