Skip to content

Commit

Permalink
Fixes propaganda posters in CL office (#4930)
Browse files Browse the repository at this point in the history
<!-- Write **BELOW** The Headers and **ABOVE** The comments else it may
not be viewable. -->

# About the pull request

Fixes #4916 

It looks like someone wanted this to be the IO poster but didn't quite
get there.

# Explain why it's good for the game

<!-- Please add a short description of why you think these changes would
benefit the game. If you can't justify it in words, it might not be
worth adding, and may discourage maintainers from reviewing or merging
your PR. This section is not strictly required for (non-controversial)
fix PRs or backend PRs. -->


# Testing Photographs and Procedure
<!-- Include any screenshots/videos/debugging steps of the modified code
functioning successfully, ideally including edge cases. -->
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog

<!-- If your PR modifies aspects of the game that can be concretely
observed by players or admins you should add a changelog. If your change
does NOT meet this description, remove this section. Be sure to properly
label your changes in the changelog. Please note that maintainers freely
reserve the right to remove and add tags should they deem it
appropriate. You can attempt to finagle the system all you want, but
it's best to shoot for clear communication right off the bat. -->
<!-- If you add a name after the ':cl', that name will be used in the
changelog. You must add your CKEY after the CL if your GitHub name
doesn't match. Maintainers freely reserve the right to remove and add
tags should they deem it appropriate. -->

:cl:
fix: Fixes posters in CL office displaying IO description.
/:cl:

<!-- Both :cl:'s are required for the changelog to work! -->
  • Loading branch information
Birdtalon committed Nov 16, 2023
1 parent 7c17c02 commit 03acf56
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
6 changes: 6 additions & 0 deletions code/game/objects/effects/decals/posters.dm
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,12 @@
serial_number = pick(27,28,30,31)
.=..()

/obj/structure/sign/poster/io
icon_state = "poster14"

/obj/structure/sign/poster/io/Initialize()
serial_number = 14
. = ..()
////////////////
//Hero Posters//
////////////////
Expand Down
16 changes: 6 additions & 10 deletions maps/map_files/USS_Almayer/USS_Almayer.dmm
Original file line number Diff line number Diff line change
Expand Up @@ -36331,11 +36331,9 @@
/obj/structure/flora/pottedplant{
icon_state = "pottedplant_21"
},
/obj/structure/sign/poster{
desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!";
icon_state = "poster14";
name = "propaganda poster";
pixel_y = 32
/obj/structure/sign/poster/io{
pixel_y = 32;
name = "propaganda poster"
},
/obj/structure/sign/safety/escapepod{
pixel_x = -17
Expand Down Expand Up @@ -39271,11 +39269,9 @@
/obj/structure/machinery/photocopier{
anchored = 0
},
/obj/structure/sign/poster{
desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!";
icon_state = "poster14";
name = "propaganda poster";
pixel_y = 32
/obj/structure/sign/poster/io{
pixel_y = 32;
name = "propaganda poster"
},
/turf/open/floor/wood/ship,
/area/almayer/command/corporateliason)
Expand Down

0 comments on commit 03acf56

Please sign in to comment.