diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index fc72bc16114..0962d540611 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -287,6 +287,7 @@ 'html/panels.css', 'html/images/loading.gif', 'html/images/ntlogo.png', + 'html/images/sglogo.png', 'html/images/talisman.png', 'icons/pda_icons/pda_atmos.png', 'icons/pda_icons/pda_back.png', diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index bb4a9d1a23f..1e85563ee80 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -260,6 +260,7 @@ t = replacetext(t, "\[row\]", "
")
+ t = replacetext(t, "\[sglogo\]", "
")
t = "[t]"
else // If it is a crayon, and he still tries to use these, make them empty!
@@ -274,6 +275,7 @@
t = replacetext(t, "\[row\]", "")
t = replacetext(t, "\[cell\]", "")
t = replacetext(t, "\[logo\]", "")
+ t = replacetext(t, "\[sglogo\]", "")
t = "[t]"
diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm
index f37cdce7063..232936484c0 100644
--- a/code/modules/paperwork/stamps.dm
+++ b/code/modules/paperwork/stamps.dm
@@ -56,6 +56,10 @@
name = "quartermaster's stamp"
icon_state = "stamp-qm"
+/obj/item/weapon/stamp/solgov
+ name = "solgov stamp"
+ icon_state = "stamp-sg"
+
// Syndicate stamp to forge documents.
/obj/item/weapon/stamp/chameleon/attack_self(mob/user as mob)
diff --git a/html/images/sglogo.png b/html/images/sglogo.png
new file mode 100644
index 00000000000..930a0c4a5e0
Binary files /dev/null and b/html/images/sglogo.png differ
diff --git a/icons/obj/bureaucracy.dmi b/icons/obj/bureaucracy.dmi
index 388575deb13..8b95d912938 100644
Binary files a/icons/obj/bureaucracy.dmi and b/icons/obj/bureaucracy.dmi differ
diff --git a/icons/obj/paper.dmi b/icons/obj/paper.dmi
index 5402b928296..0d5ca3e4e78 100644
Binary files a/icons/obj/paper.dmi and b/icons/obj/paper.dmi differ