Makes fishing gloves MODule lower difficulty rather than increasing (#92675)

## About The Pull Request

It was increasing the difficulty of fishing, when it shouldn't've.

## Why It's Good For The Game

closes #92674

## Changelog
🆑

fix: Fishing gloves MODule now actually lowers the difficulty of fishing
like it says

/🆑
This commit is contained in:
Leland Kemble
2025-08-22 16:41:27 -04:00
committed by GitHub
parent 31846bc965
commit 7ae021ee89

View File

@@ -997,7 +997,7 @@
var/obj/item/gloves = mod.get_part_from_slot(ITEM_SLOT_GLOVES) var/obj/item/gloves = mod.get_part_from_slot(ITEM_SLOT_GLOVES)
if(!gloves) if(!gloves)
return return
gloves.AddComponent(/datum/component/adjust_fishing_difficulty, 5) gloves.AddComponent(/datum/component/adjust_fishing_difficulty, -5)
if(equipped) if(equipped)
gloves.AddComponent(/datum/component/profound_fisher, equipped, delete_rod_when_deleted = FALSE) gloves.AddComponent(/datum/component/profound_fisher, equipped, delete_rod_when_deleted = FALSE)