From 13ee0d375c066af1e0f1ce45a99a8825dd334225 Mon Sep 17 00:00:00 2001 From: DelineFortune <107496369+DelineFortune@users.noreply.github.com> Date: Mon, 8 Jan 2024 01:46:23 +0300 Subject: [PATCH 1/3] Fixing duplication of metal You can take M41A from vendor, strip it for stock+underbarrel grenade launcher and get 1 metal sheel (4000) per 5 seconds. Now you are getting 200 of metal for those actions so its not effective anymore --- code/modules/projectiles/gun_attachables.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 0f3fde8f3c9b..4e45662bc1d7 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -31,7 +31,7 @@ Defined in conflicts.dm of the #defines folder. var/pixel_shift_y = 16 //Uses the bottom left corner of the item. flags_atom = FPRINT|CONDUCT - matter = list("metal" = 2000) + matter = list("metal" = 100) w_class = SIZE_SMALL force = 1 var/slot = null //"muzzle", "rail", "under", "stock", "special" From 63de9924001af686752fc596538289a72c4a7c40 Mon Sep 17 00:00:00 2001 From: DelineFortune <107496369+DelineFortune@users.noreply.github.com> Date: Mon, 8 Jan 2024 02:29:13 +0300 Subject: [PATCH 2/3] Revert "Fixing duplication of metal" This reverts commit 13ee0d375c066af1e0f1ce45a99a8825dd334225. --- code/modules/projectiles/gun_attachables.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 4e45662bc1d7..0f3fde8f3c9b 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -31,7 +31,7 @@ Defined in conflicts.dm of the #defines folder. var/pixel_shift_y = 16 //Uses the bottom left corner of the item. flags_atom = FPRINT|CONDUCT - matter = list("metal" = 100) + matter = list("metal" = 2000) w_class = SIZE_SMALL force = 1 var/slot = null //"muzzle", "rail", "under", "stock", "special" From fb62e74cf660625cc5591c5b94aaf42314e8a4db Mon Sep 17 00:00:00 2001 From: DelineFortune Date: Tue, 9 Jan 2024 05:53:23 +0300 Subject: [PATCH 3/3] Attachment dupe -metal Making attachment duplication non effective to metal farm --- code/modules/projectiles/gun_attachables.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun_attachables.dm b/code/modules/projectiles/gun_attachables.dm index 0f3fde8f3c9b..4e45662bc1d7 100644 --- a/code/modules/projectiles/gun_attachables.dm +++ b/code/modules/projectiles/gun_attachables.dm @@ -31,7 +31,7 @@ Defined in conflicts.dm of the #defines folder. var/pixel_shift_y = 16 //Uses the bottom left corner of the item. flags_atom = FPRINT|CONDUCT - matter = list("metal" = 2000) + matter = list("metal" = 100) w_class = SIZE_SMALL force = 1 var/slot = null //"muzzle", "rail", "under", "stock", "special"