Skip to content

Commit

Permalink
small fix (#4998)
Browse files Browse the repository at this point in the history
  • Loading branch information
Trilbyspaceclone authored Feb 1, 2024
1 parent 22cce4e commit 093862a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions code/datums/craft/recipes/guild.dm
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@
list(/obj/item/tool_upgrade/augment/fuel_tank, 1),
list(QUALITY_BOLT_TURNING, 40, "time" = 10),
list(QUALITY_DRILLING, 45, 10),
list(CRAFT_MATERIAL, 1, MATERIAL_DIAMOND, TIME = 60),
list(QUALITY_HAMMERING, 30, "time" = 40),
list(QUALITY_SAWING, 45, "time" = 40),
list(QUALITY_WELDING, 30, "time" = 60)
)
Expand Down
4 changes: 2 additions & 2 deletions code/game/objects/items/weapons/tools/shovel.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
throwforce = WEAPON_FORCE_DANGEROUS
w_class = ITEM_SIZE_SMALL
armor_penetration = ARMOR_PEN_SHALLOW
matter = list(MATERIAL_STEEL = 6, MATERIAL_PLASTEEL = 6)
matter = list(MATERIAL_STEEL = 6, MATERIAL_PLASTEEL = 6, MATERIAL_DIAMOND = 1)
tool_qualities = list(QUALITY_SHOVELING = 85, QUALITY_DIGGING = 85, QUALITY_PRYING = 70, QUALITY_CUTTING = 30, QUALITY_SAWING = 45)
workspeed = 1.5
price_tag = 2875
Expand All @@ -81,7 +81,7 @@
passive_fuel_cost = 0.05
max_fuel = 80

switched_on_qualities = list(QUALITY_SHOVELING = 60, QUALITY_DIGGING = 60, QUALITY_PRYING = 45, QUALITY_CUTTING = 10, QUALITY_SAWING = 15)
switched_on_qualities = list(QUALITY_SHOVELING = 60, QUALITY_DIGGING = 45, QUALITY_PRYING = 30, QUALITY_CUTTING = 10, QUALITY_SAWING = 15)
switched_off_qualities = list(QUALITY_SHOVELING = 25, QUALITY_DIGGING = 25, QUALITY_PRYING = 25, QUALITY_CUTTING = 5, QUALITY_SAWING = 5) //Still kindof usable when off

/obj/item/tool/shovel/combat/turbo/turn_on(mob/user)
Expand Down

0 comments on commit 093862a

Please sign in to comment.