mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-23 05:00:55 +01:00
fix ore vents spawning the wrong wolves and remove simple wolves (#81864)
## About The Pull Request wolves got refactored but the ore vents were still spawning the old versions, this fixes it and removes the old wolves from the code ## Why It's Good For The Game fixes ore vents spawning old wolves ## Changelog 🆑 fix: fixes ore vent spawned wolves being untammable /🆑
This commit is contained in:
@@ -470,3 +470,17 @@
|
||||
continue
|
||||
return possible_turf
|
||||
return get_turf(user)
|
||||
|
||||
//wolf trophy
|
||||
|
||||
/obj/item/crusher_trophy/wolf_ear
|
||||
name = "wolf ear"
|
||||
desc = "It's a wolf ear."
|
||||
icon_state = "wolf_ear"
|
||||
denied_type = /obj/item/crusher_trophy/wolf_ear
|
||||
|
||||
/obj/item/crusher_trophy/wolf_ear/effect_desc()
|
||||
return "mark detonation to gain a slight speed boost temporarily"
|
||||
|
||||
/obj/item/crusher_trophy/wolf_ear/on_mark_detonation(mob/living/target, mob/living/user)
|
||||
user.apply_status_effect(/datum/status_effect/speed_boost, 1 SECONDS)
|
||||
|
||||
Reference in New Issue
Block a user