diff --git a/code/datums/ammo/bullet/special_ammo.dm b/code/datums/ammo/bullet/special_ammo.dm index cd30f8db1a78..b6d1ad4c93c3 100644 --- a/code/datums/ammo/bullet/special_ammo.dm +++ b/code/datums/ammo/bullet/special_ammo.dm @@ -9,10 +9,12 @@ icon_state = "redbullet" flags_ammo_behavior = AMMO_BALLISTIC + damage_falloff = DAMAGE_FALLOFF_TIER_7 max_range = 12 accuracy = HIT_ACCURACY_TIER_4 damage = 30 penetration = 0 + effective_range_max = 7 /datum/ammo/bullet/smartgun/armor_piercing name = "armor-piercing smartgun bullet" @@ -31,6 +33,7 @@ shrapnel_chance = SHRAPNEL_CHANCE_TIER_7 accurate_range = 32 accuracy = HIT_ACCURACY_TIER_3 + damage_falloff = DAMAGE_FALLOFF_TIER_10 damage = 40 penetration = 0 diff --git a/code/modules/clothing/glasses/night.dm b/code/modules/clothing/glasses/night.dm index 984a906eabed..d822a1598320 100644 --- a/code/modules/clothing/glasses/night.dm +++ b/code/modules/clothing/glasses/night.dm @@ -94,7 +94,7 @@ icon_state = "m56_goggles" deactive_state = "m56_goggles_0" toggleable = TRUE - actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/m56_goggles/far_sight) + actions_types = list(/datum/action/item_action/toggle) vision_flags = SEE_TURFS fullscreen_vision = null req_skill = SKILL_SPEC_WEAPONS @@ -203,6 +203,7 @@ name = "\improper M56T head mounted sight" desc = "A headset and goggles system for the M56T 'Terminator' Smartgun. Has a low-light vision processor as well as a system allowing detection of thermal signatures though solid surfaces." vision_flags = SEE_TURFS|SEE_MOBS + actions_types = list(/datum/action/item_action/toggle, /datum/action/item_action/m56_goggles/far_sight) /obj/item/clothing/glasses/night/yautja name = "bio-mask nightvision"