diff --git a/code/modules/client/asset_cache.dm b/code/modules/client/asset_cache.dm index b875301083d..80eb0a701d7 100644 --- a/code/modules/client/asset_cache.dm +++ b/code/modules/client/asset_cache.dm @@ -17,8 +17,8 @@ You can set verify to TRUE if you want send() to sleep until the client has the //When sending mutiple assets, how many before we give the client a quaint little sending resources message #define ASSET_CACHE_TELL_CLIENT_AMOUNT 8 -//When passively preloading assets, how many to send at once? Too high creates noticable lag where as too low can flood the client's cache with "verify" files -#define ASSET_CACHE_PRELOAD_CONCURRENT 3 +//When passively preloading assets, how many to send at once? Too high creates noticable lag where as too low can flood the client's cache with "verify" files +#define ASSET_CACHE_PRELOAD_CONCURRENT 3 /client var/list/cache = list() // List of all assets sent to this client by the asset cache. @@ -191,6 +191,7 @@ You can set verify to TRUE if you want send() to sleep until the client has the "large_stamp-cent.png" = 'icons/paper_icons/large_stamp-cent.png', "large_stamp-syndicate.png" = 'icons/paper_icons/large_stamp-syndicate.png', "large_stamp-rep.png" = 'icons/paper_icons/large_stamp-rep.png', + "large_stamp-magistrate.png"= 'icons/paper_icons/large_stamp-magistrate.png', "talisman.png" = 'icons/paper_icons/talisman.png', "ntlogo.png" = 'icons/paper_icons/ntlogo.png' ) diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm index 3aa21c5a5d0..9bb3a09ebb0 100644 --- a/code/modules/paperwork/stamps.dm +++ b/code/modules/paperwork/stamps.dm @@ -76,7 +76,12 @@ name = "Nanotrasen Representative's rubber stamp" icon_state = "stamp-rep" item_color = "rep" - + +/obj/item/stamp/magistrate + name = "Magistrate's rubber stamp" + icon_state = "stamp-magistrate" + item_color = "rep" + /obj/item/stamp/centcom name = "Central Command rubber stamp" icon_state = "stamp-cent" diff --git a/icons/paper_icons/large_stamp-magistrate.png b/icons/paper_icons/large_stamp-magistrate.png new file mode 100644 index 00000000000..21c283026e8 Binary files /dev/null and b/icons/paper_icons/large_stamp-magistrate.png differ