Skip to content

Commit

Permalink
<10 icon state
Browse files Browse the repository at this point in the history
  • Loading branch information
nauticall committed Jul 21, 2023
1 parent e239220 commit 858324c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/objects/items/reagent_containers/blood_pack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
var/image/filling = image('icons/obj/items/reagentfillings.dmi', src, "[icon_state]10")

switch(percent)
if(0 to 19) filling.icon_state = "[icon_state]10"
if(1 to 9) filling.icon_state = "[icon_state]5"
if(10 to 19) filling.icon_state = "[icon_state]10"
if(20 to 39) filling.icon_state = "[icon_state]25"
if(40 to 64) filling.icon_state = "[icon_state]50"
if(65 to 79) filling.icon_state = "[icon_state]75"
Expand Down

0 comments on commit 858324c

Please sign in to comment.