diff --git a/code/game/objects/items/devices/versebook.dm b/code/game/objects/items/devices/versebook.dm index 8c78f5163b5..bf0f967b6d6 100644 --- a/code/game/objects/items/devices/versebook.dm +++ b/code/game/objects/items/devices/versebook.dm @@ -2,10 +2,13 @@ name = "\improper versebook" desc = "If you see this, someone fucked up. Make a issue request." desc_fluff = "No, seriously. Make a issue request" - contained_sprite = TRUE + item_icons = list( + slot_l_hand_str = 'icons/mob/items/lefthand_books.dmi', + slot_r_hand_str = 'icons/mob/items/righthand_books.dmi', + ) icon = 'icons/obj/library.dmi' icon_state = "dominiabook" - item_state = "dominiabook" + item_state = "dominia" var/reading = FALSE drop_sound = 'sound/items/drop/book.ogg' @@ -39,7 +42,7 @@ desc = "A holy text of the Moroz Holy Tribunal, the state religion of the Empire of Dominia." desc_fluff = "An almost mandatory possession for any Dominian household, containing a list of edicts, litanies, and rituals." icon_state = "dominiabook" - item_state = "dominiabook" + item_state = "dominia" /obj/item/device/versebook/tribunal/Initialize() . = ..() @@ -50,7 +53,7 @@ desc = "A popular Gadpathurian pocket guide, used to carry a fragment of the Commander's wisdom abroad." desc_fluff = "Manufactured using recycled paper and canvas. The wisdom within the text is based on the collected speeches of Commander Patvardhan and her assorted councillors." icon_state = "gadpathurbook" - item_state = "gadpathurbook" + item_state = "gadpathur" /obj/item/device/versebook/gadpathur/Initialize() . = ..() @@ -61,7 +64,7 @@ desc = "A common possession by Biesel government officals, the printed text of the constitution for the Federal Republic of Biesel and the Corporate Reconstruction Zone, adopted in 2452." desc_fluff = "This book has the Republic of Biesel's iconic symbol etched on the cover, the text within details the structure of the Federal Democracy the Republic is today." icon_state = "bieselbook" - item_state = "bieselbook" + item_state = "biesel" /obj/item/device/versebook/biesel/Initialize() . = ..() @@ -72,7 +75,7 @@ desc = "The holy text of the Trinary Perfection, who believe in synthetic perfection and eventual salvation." desc_fluff = "This book contains some verses of the core beliefs of the Trinary Perfection, including some of the original works by the Corkfells, some additions by the prophet-like figure Flock, and a few recent additions by Ecclesiarch ARM-1DRIL. This is the abridged version, with only the core beliefs present." icon_state = "trinarybook" - item_state = "trinarybook" + item_state = "trinary" /obj/item/device/versebook/trinary/Initialize() . = ..() diff --git a/html/changelogs/flaminglily-fuuuuuuuuuuu.yml b/html/changelogs/flaminglily-fuuuuuuuuuuu.yml new file mode 100644 index 00000000000..c9105192f5c --- /dev/null +++ b/html/changelogs/flaminglily-fuuuuuuuuuuu.yml @@ -0,0 +1,42 @@ +################################ +# 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: FlamingLily + +# 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: + - bugfix: "Fixed missing sprites on versebooks." + - imageadd: "Replaced the trinary bible sprite with one of the trinary logo." diff --git a/icons/mob/items/lefthand_books.dmi b/icons/mob/items/lefthand_books.dmi index 41fb4a0e932..debbcef2642 100644 Binary files a/icons/mob/items/lefthand_books.dmi and b/icons/mob/items/lefthand_books.dmi differ diff --git a/icons/mob/items/righthand_books.dmi b/icons/mob/items/righthand_books.dmi index 130c86a08cd..c39ee9fb35e 100644 Binary files a/icons/mob/items/righthand_books.dmi and b/icons/mob/items/righthand_books.dmi differ diff --git a/icons/obj/library.dmi b/icons/obj/library.dmi index 5a1e00e306e..b482f465a08 100644 Binary files a/icons/obj/library.dmi and b/icons/obj/library.dmi differ