Skip to content

Commit

Permalink
reduce chance for mail from 1 to 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenionatus committed Aug 5, 2023
1 parent 37fd1d2 commit 7b96c4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/modules/shuttle/supply.dm
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ GLOBAL_LIST_INIT(blacklisted_cargo_types, typecacheof(list(

/obj/docking_port/mobile/supply/initiate_docking()
if(getDockedId() == "supply_away") // Buy when we leave home.
create_mail()
if(prob(20)) //NSV13 Only send mail 1/5 of the time
create_mail()
buy()
. = ..() // Fly/enter transit.
if(. != DOCKING_SUCCESS)
Expand Down

0 comments on commit 7b96c4b

Please sign in to comment.