Skip to content

Commit

Permalink
[MIRROR] removed some left over trailing slashes in paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Spookerton authored and SuhEugene committed Nov 23, 2023
1 parent 8ab383d commit 08f8e39
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion code/datums/trading/ai.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ They sell generic supplies and ask for generic supplies.

TRADER_BRIBE_FAILURE = "You have given me money to stay, however, I am a station. I do not leave.",
)
possible_wanted_items = list(/obj/item/device/ = TRADER_SUBTYPES_ONLY,
possible_wanted_items = list(/obj/item/device = TRADER_SUBTYPES_ONLY,
/obj/item/device/assembly = TRADER_BLACKLIST_ALL,
/obj/item/device/assembly_holder = TRADER_BLACKLIST_ALL,
/obj/item/device/encryptionkey/syndicate = TRADER_BLACKLIST,
Expand Down
2 changes: 1 addition & 1 deletion code/datums/trading/vox.dm
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
TRADER_INSULT_GOOD = "Where this come from? Is trade no good?",
TRADER_INSULT_BAD = "If you say all this at home, you be dead!"
)
possible_wanted_items = list(/obj/item/ = TRADER_SUBTYPES_ONLY,
possible_wanted_items = list(/obj/item = TRADER_SUBTYPES_ONLY,
/obj/item/stack/material = TRADER_SUBTYPES_ONLY,
/obj/item/stack/material/cyborg = TRADER_BLACKLIST_ALL,
/obj/item/organ = TRADER_SUBTYPES_ONLY,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
build_path = /obj/machinery/power/smes/batteryrack
board_type = "machine"
origin_tech = list(TECH_POWER = 3, TECH_ENGINEERING = 2)
req_components = list(/obj/item/stock_parts/capacitor/ = 3, /obj/item/stock_parts/matter_bin/ = 1)
req_components = list(/obj/item/stock_parts/capacitor = 3, /obj/item/stock_parts/matter_bin = 1)
additional_spawn_components = list(
/obj/item/stock_parts/console_screen = 1,
/obj/item/stock_parts/keyboard = 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
size = 5 // Size in GQ. Integers only. Smaller sizes should be used for utility/low use programs (like this one), while large sizes are for important programs.
requires_ntnet = FALSE // This particular program does not require NTNet network conectivity...
available_on_ntnet = TRUE // ... but we want it to be available for download.
nanomodule_path = /datum/nano_module/arcade_classic/ // Path of relevant nano module. The nano module is defined further in the file.
nanomodule_path = /datum/nano_module/arcade_classic // Path of relevant nano module. The nano module is defined further in the file.
var/picked_enemy_name
usage_flags = PROGRAM_ALL

Expand Down
2 changes: 1 addition & 1 deletion code/modules/reagents/Chemistry-Recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,7 @@
/datum/chemical_reaction/eggnog
name = "Eggnog"
result = /datum/reagent/drink/eggnog
required_reagents = list(/datum/reagent/nutriment/protein/egg = 1, /datum/reagent/drink/milk/ = 1, /datum/reagent/sugar = 1)
required_reagents = list(/datum/reagent/nutriment/protein/egg = 1, /datum/reagent/drink/milk = 1, /datum/reagent/sugar = 1)
result_amount = 3

/datum/chemical_reaction/espresso
Expand Down
2 changes: 1 addition & 1 deletion code/modules/spells/spellbook.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var/global/list/artefact_feedback = list(/obj/structure/closet/wizard/armor =
var/uses = 1
var/temp = null
var/datum/spellbook/spellbook
var/spellbook_type = /datum/spellbook/ //for spawning specific spellbooks.
var/spellbook_type = /datum/spellbook //for spawning specific spellbooks.
var/investing_time = 0 //what time we target forr a return on our spell investment.
var/has_sacrificed = 0 //whether we have already got our sacrifice bonus for the current investment.

Expand Down

0 comments on commit 08f8e39

Please sign in to comment.