Skip to content

Commit

Permalink
[MIRROR] even more sprite fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeAngryMiner authored and SuhEugene committed Sep 21, 2023
1 parent 7a158e6 commit 1e4d37f
Show file tree
Hide file tree
Showing 12 changed files with 66 additions and 94 deletions.
6 changes: 3 additions & 3 deletions code/game/machinery/cryopod.dm
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@
desc = "A man-sized pod for entering suspended animation. Dubbed 'cryocoffin' by more cynical spacers, it is pretty barebone, counting on stasis system to keep the victim alive rather than packing extended supply of food or air. Can be ordered with symbols of common religious denominations to be used in space funerals too."
on_store_name = "Life Pod Oversight"
time_till_despawn = 20 MINUTES
icon_state = "redpod0"
base_icon_state = "redpod0"
occupied_icon_state = "redpod1"
icon_state = "lifepod_0"
base_icon_state = "lifepod_0"
occupied_icon_state = "lifepod_1"
var/launched = 0
var/datum/gas_mixture/airtank

Expand Down
1 change: 1 addition & 0 deletions code/game/objects/items/stacks/tiles/tile_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
randpixel = 7
w_class = ITEM_SIZE_NORMAL
max_amount = 100
icon_state = "tile"
icon = 'icons/obj/tiles.dmi'

force = 1
Expand Down
1 change: 1 addition & 0 deletions code/modules/clothing/spacesuits/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@
name = "spacesuit helmet"
desc = "A special helmet designed for work in a hazardous, low-pressure environment. The tinting can be toggled for flash protection at the cost of worse visibility."
icon_state = "spacebowl"
item_state = "spacebowl"
light_overlay = "yellow_light"
tinted = FALSE
1 change: 0 additions & 1 deletion code/modules/detectivework/microscope/dnascanner.dm
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@
if(bloodsamp)
var/obj/item/paper/P = new(src)
P.SetName("[src] report #[++report_num]: [bloodsamp.name]")
P.stamped = list(/obj/item/stamp)
P.SetOverlays("paper_stamped")
var/data = "No scan information available."
if(bloodsamp.dna != null || bloodsamp.trace_dna != null)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/paperwork/papershredder.dm
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@

/obj/item/shreddedp
name = "shredded paper"
icon = 'icons/obj/paper.dmi'
icon = 'icons/obj/machines/bureaucracy/papershredder.dmi'
icon_state = "shredp"
randpixel = 5
throwforce = 0
Expand Down
10 changes: 5 additions & 5 deletions code/modules/persistence/noticeboards.dm
Original file line number Diff line number Diff line change
Expand Up @@ -214,33 +214,33 @@
P.SetName("Memo RE: proper analysis procedure")
P.info = "<br>We keep test dummies in pens here for a reason, so standard procedure should be to activate newfound alien artifacts and place the two in close proximity. Promising items I might even approve monkey testing on."
P.stamped = list(/obj/item/stamp/rd)
P.AddOverlays("paper_stamped_rd")
P.AddOverlays("paper_stamp-circle")
add_paper(P, skip_icon_update = TRUE)

P = new()
P.SetName("Memo RE: materials gathering")
P.info = "Corasang,<br>the hands-on approach to gathering our samples may very well be slow at times, but it's safer than allowing the blundering miners to roll willy-nilly over our dig sites in their mechs, destroying everything in the process. And don't forget the escavation tools on your way out there!<br>- R.W"
P.stamped = list(/obj/item/stamp/rd)
P.AddOverlays("paper_stamped_rd")
P.AddOverlays("paper_stamp-circle")
add_paper(P, skip_icon_update = TRUE)

P = new()
P.SetName("Memo RE: ethical quandaries")
P.info = "Darion-<br><br>I don't care what his rank is, our business is that of science and knowledge - questions of moral application do not come into this. Sure, so there are those who would employ the energy-wave particles my modified device has managed to abscond for their own personal gain, but I can hardly see the practical benefits of some of these artifacts our benefactors left behind. Ward--"
P.stamped = list(/obj/item/stamp/rd)
P.AddOverlays("paper_stamped_rd")
P.AddOverlays("paper_stamp-circle")
add_paper(P, skip_icon_update = TRUE)

P = new()
P.SetName("READ ME! Before you people destroy any more samples")
P.info = "how many times do i have to tell you people, these xeno-arch samples are del-i-cate, and should be handled so! careful application of a focussed, concentrated heat or some corrosive liquids should clear away the extraneous carbon matter, while application of an energy beam will most decidedly destroy it entirely - like someone did to the chemical dispenser! W, <b>the one who signs your paychecks</b>"
P.stamped = list(/obj/item/stamp/rd)
P.AddOverlays("paper_stamped_rd")
P.AddOverlays("paper_stamp-circle")
add_paper(P, skip_icon_update = TRUE)

P = new()
P.SetName("Reminder regarding the anomalous material suits")
P.info = "Do you people think the anomaly suits are cheap to come by? I'm about a hair trigger away from instituting a log book for the damn things. Only wear them if you're going out for a dig, and for god's sake don't go tramping around in them unless you're field testing something, R"
P.stamped = list(/obj/item/stamp/rd)
P.AddOverlays("paper_stamped_rd")
P.AddOverlays("paper_stamp-circle")
add_paper(P)
Binary file modified icons/mob/light_overlays.dmi
Binary file not shown.
Binary file modified icons/obj/light_overlays.dmi
Binary file not shown.
Binary file modified icons/obj/machines/medical/bodyscanner.dmi
Binary file not shown.
Binary file modified icons/obj/machines/robot_charger.dmi
Binary file not shown.
Loading

0 comments on commit 1e4d37f

Please sign in to comment.