diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm index a583982b96f..88af9bd5bb4 100644 --- a/code/__HELPERS/text.dm +++ b/code/__HELPERS/text.dm @@ -652,6 +652,8 @@ t = replacetext(t, "\[flag_izweski_small\]", "") t = replacetext(t, "\[logo_golden\]", "") t = replacetext(t, "\[logo_golden_small\]", "") + t = replacetext(t, "\[logo_pvpolice\]", "") + t = replacetext(t, "\[logo_pvpolice_small\]", "") t = replacetext(t, "\[barcode\]", "") t = replacetext(t, "\[time\]", "[worldtime2text()]") t = replacetext(t, "\[date\]", "[worlddate2text()]") @@ -720,6 +722,8 @@ t = replacetext(t, "", "\[flag_nka\]") t = replacetext(t, "", "\[flag_izweski\]") t = replacetext(t, "", "\[logo_golden\]") + t = replacetext(t, "", "\[logo_pvpolice\]") + t = replacetext(t, "", "\[logo_pvpolice_small\]") return t diff --git a/code/modules/asset_cache/asset_cache.dm b/code/modules/asset_cache/asset_cache.dm index 818d8646dd0..4bcb28080f4 100644 --- a/code/modules/asset_cache/asset_cache.dm +++ b/code/modules/asset_cache/asset_cache.dm @@ -532,6 +532,8 @@ var/list/asset_datums = list() "izweskiflag_small.png" = 'html/images/izweskiflag_small.png', "goldenlogo.png" = 'html/images/factions/goldenlogo.png', "goldenlogo_small.png" = 'html/images/factions/goldenlogo_small.png', + "pvpolicelogo.png" = 'html/images/pvpolicelogo.png', + "pvpolicelogo_small.png" = 'html/images/pvpolicelogo_small.png', //scan images that appear on sensors "no_data.png" = 'html/images/scans/no_data.png', "horizon.png" = 'html/images/scans/horizon.png', diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 331faace0de..ef1c50b0150 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -341,6 +341,8 @@ t = replacetext(t, "\[logo_hp_small\]", "") t = replacetext(t, "\[logo_be\]", "") t = replacetext(t, "\[logo_golden\]", "") + t = replacetext(t, "\[logo_pvpolice\]", "") + t = replacetext(t, "\[logo_pvpolice_small\]", "") t = replacetext(t, "\[barcode\]", "") if(istypewriter) diff --git a/html/changelogs/greenjoe12345 - coplogo.yml b/html/changelogs/greenjoe12345 - coplogo.yml new file mode 100644 index 00000000000..3c16a53759e --- /dev/null +++ b/html/changelogs/greenjoe12345 - coplogo.yml @@ -0,0 +1,41 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: greenjoe12345 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds a Point Verdant Police logo for use in paperwork. Make it with [logo_pvpolice] and the small one with [logo_pvpolice_small]." diff --git a/html/images/pvpolicelogo.png b/html/images/pvpolicelogo.png new file mode 100644 index 00000000000..a14c7934c00 Binary files /dev/null and b/html/images/pvpolicelogo.png differ diff --git a/html/images/pvpolicelogo_small.png b/html/images/pvpolicelogo_small.png new file mode 100644 index 00000000000..e719f84acba Binary files /dev/null and b/html/images/pvpolicelogo_small.png differ