Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/datums/components/crafting/crafting.dm
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
human_crafter = crafter
if(CONFIG_GET(flag/punishing_zero_dots) && human_crafter.st_get_stat(STAT_CRAFTS) < 1)
return ", you dont know how to craft!"
recipe_time = recipe_time / human_crafter.st_get_stat(STAT_CRAFTS)
recipe_time = recipe_time / max(human_crafter.st_get_stat(STAT_CRAFTS), 1)
// DARKPACK EDIT ADD END

if(!do_after(crafter, round(recipe_time, 0.1 SECONDS), target = crafter))
Expand Down
4 changes: 4 additions & 0 deletions html/changelogs/AutoChangeLog-pr-690.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
author: "SELFHELL"
delete-after: True
changes:
- bugfix: "Necromancy tomes will properly spawn for Capo/La Squadra Roles"
2 changes: 1 addition & 1 deletion modular_darkpack/modules/jobs/code/giovanni/capo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
shoes = /obj/item/clothing/shoes/vampire
l_pocket = /obj/item/smartphone/giovanni_capo
r_pocket = /obj/item/vamp/keys/capo
backpack_contents = list(/obj/item/card/credit/giovanniboss=1)
backpack_contents = list(/obj/item/card/credit/giovanniboss=1, /obj/item/ritual_tome/necromancy=1)
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
shoes = /obj/item/clothing/shoes/vampire
l_pocket = /obj/item/smartphone/giovanni_squadra
r_pocket = /obj/item/vamp/keys/giovanni
backpack_contents = list(/obj/item/card/credit/rich=1)
backpack_contents = list(/obj/item/card/credit/rich=1, /obj/item/ritual_tome/necromancy=1)
Loading