Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Mark Suckerberg <[email protected]>
Signed-off-by: FalloutFalcon <[email protected]>
  • Loading branch information
FalloutFalcon and MarkSuckerberg authored Nov 29, 2023
1 parent f357fea commit bbdce88
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@
if(prob(85))
back = /obj/item/storage/backpack/explorer //someone could totally make these backpacks a subtype and just have them be there. It'd cut down this file size a bit.
backpack_contents = list()
for(var/i = 1 to 3)
for(var/count in 1 to 3)
if(prob(70))
backpack_contents += pickweight(list(
/obj/item/borg/upgrade/modkit/damage = 1,
Expand Down Expand Up @@ -671,7 +671,7 @@
if(prob(70))
back = /obj/item/storage/backpack
backpack_contents = list()
for(var/i = 1 to 3)
for(var/count in 1 to 3)
if(prob(75))
backpack_contents += pickweight(list(
/obj/item/slime_extract/grey = 1,
Expand Down

0 comments on commit bbdce88

Please sign in to comment.