diff --git a/code/modules/cargo/bounties/reagent.dm b/code/modules/cargo/bounties/reagent.dm index c9b655d98a2..275dbaeb3d2 100644 --- a/code/modules/cargo/bounties/reagent.dm +++ b/code/modules/cargo/bounties/reagent.dm @@ -110,7 +110,6 @@ /datum/reagent/clonexadone,\ /datum/reagent/rezadone,\ /datum/reagent/space_drugs,\ - /datum/reagent/nitroglycerin,\ /datum/reagent/thermite,\ /datum/reagent/nutriment/honey,\ /datum/reagent/frostoil,\ diff --git a/code/modules/cargo/bounties/virus.dm b/code/modules/cargo/bounties/virus.dm index 25301df27b1..38c48f48c73 100644 --- a/code/modules/cargo/bounties/virus.dm +++ b/code/modules/cargo/bounties/virus.dm @@ -5,13 +5,13 @@ var/stat_name = "" /datum/bounty/virus/New() - ..() stat_value = rand(4, 11) if(rand(3) == 1) stat_value *= -1 name = "Virus ([stat_name] of [stat_value])" description = "%COMPNAME is interested in a virus with a [stat_name] stat of exactly [stat_value]. %BOSSSHORT will pay handsomely for such a virus." reward += rand(0, 4) * 500 + ..() /datum/bounty/virus/completion_string() return shipped ? "Shipped" : "Not Shipped" diff --git a/html/changelogs/arrow768-bugs.yml b/html/changelogs/arrow768-bugs.yml new file mode 100644 index 00000000000..0fec09521c6 --- /dev/null +++ b/html/changelogs/arrow768-bugs.yml @@ -0,0 +1,38 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +################################# + +# Your name. +author: Arrow768 + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Removes Nitroglycerin from the cargo bounty list." + - bugfix: "Fixes the company / boss name not being displayed properly in the virus bounties."