From 76bb4aa63e42d5592c14c849e9fe43de4e46e76e Mon Sep 17 00:00:00 2001 From: JosephJomama <60072879+JosephJomama@users.noreply.github.com> Date: Fri, 16 Apr 2021 20:45:51 -0400 Subject: [PATCH] Fixes bounty cubes paying out extremely low speedy delivery bonuses (#58434) Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> --- code/modules/cargo/exports/civilain_bounty.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/cargo/exports/civilain_bounty.dm b/code/modules/cargo/exports/civilain_bounty.dm index 66054f1d0b5..05241e0ab75 100644 --- a/code/modules/cargo/exports/civilain_bounty.dm +++ b/code/modules/cargo/exports/civilain_bounty.dm @@ -5,4 +5,4 @@ export_types = list(/obj/item/bounty_cube) /datum/export/bounty_box/get_cost(obj/item/bounty_cube/cube, apply_elastic) - return cube.bounty_value + (cube.bounty_value * (cube.speed_bonus / 100)) + return cube.bounty_value + (cube.bounty_value * cube.speed_bonus)