diff --git a/code/modules/projectiles/ammunition/bullets.dm b/code/modules/projectiles/ammunition/bullets.dm index 70e70c31b1f..facac4e2206 100644 --- a/code/modules/projectiles/ammunition/bullets.dm +++ b/code/modules/projectiles/ammunition/bullets.dm @@ -29,7 +29,7 @@ /obj/item/ammo_casing/c38 desc = "A .38 bullet casing." caliber = "38" - projectile_type = /obj/item/projectile/bullet/weakbullet + projectile_type = /obj/item/projectile/bullet/weakbullet2 /obj/item/ammo_casing/c10mm diff --git a/code/modules/projectiles/projectile/bullets.dm b/code/modules/projectiles/projectile/bullets.dm index b2f0bf0f9ab..54e8814d22a 100644 --- a/code/modules/projectiles/projectile/bullets.dm +++ b/code/modules/projectiles/projectile/bullets.dm @@ -8,7 +8,13 @@ /obj/item/projectile/bullet/weakbullet - damage = 10 + damage = 5 + stun = 5 + weaken = 5 + + +/obj/item/projectile/bullet/weakbullet2 + damage = 15 stun = 5 weaken = 5 @@ -113,4 +119,4 @@ /obj/item/projectile/bullet/neurotoxin/on_hit(var/atom/target, var/blocked = 0) if(isalien(target)) return 0 - ..() // Execute the rest of the code. \ No newline at end of file + ..() // Execute the rest of the code.