Skip to content

Commit

Permalink
[MIRROR] Fix invalid noticeboard icon if over 5 papers attached
Browse files Browse the repository at this point in the history
  • Loading branch information
HeyBanditoz authored and SierraHelper committed Jan 21, 2025
1 parent 54cf239 commit efe2240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/persistence/noticeboards.dm
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
dismantle()

/obj/structure/noticeboard/on_update_icon()
icon_state = "[base_icon_state][LAZYLEN(notices)]"
icon_state = "[base_icon_state][min(LAZYLEN(notices), 5)]"


/obj/structure/noticeboard/use_tool(obj/item/tool, mob/user, list/click_params)
Expand Down

0 comments on commit efe2240

Please sign in to comment.