Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dwarves are better at smithing. #4372

Merged
merged 3 commits into from
Nov 25, 2024
Merged
Changes from 2 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: 2 additions & 0 deletions monkestation/code/modules/smithing/minigame/anvil_minigame.dm
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@
total_notes = end_product_recipe.total_notes

difficulty = max(1,round(selected_recipe.difficulty + difficulty_modifier - (user.mind.get_skill_level(/datum/skill/smithing) - 3))) //Better smiths have easier times
if(HAS_TRAIT(user, TRAIT_DWARF) && difficulty != 1) //Dwarves are better at smithing.
wraith-54321 marked this conversation as resolved.
Show resolved Hide resolved
difficulty--

generate_anvil_beats(TRUE)

Expand Down
Loading