From 70ff3008126d316ce5e800d84064d91a8835d676 Mon Sep 17 00:00:00 2001 From: Chiefwaffles Date: Wed, 8 Jul 2015 15:18:05 -0700 Subject: [PATCH 1/3] Changed w_class of the base power cell from 3.0 to 2.0 --- code/modules/power/cell.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index 5f2b72bd833..9e06a10b769 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -9,7 +9,7 @@ throwforce = 5.0 throw_speed = 2 throw_range = 5 - w_class = 3.0 + w_class = 2.0 //is that a power cell in your pocket, or are you happy to see me? var/charge = 0 // note %age conveted to actual charge in New var/maxcharge = 1000 materials = list(MAT_METAL=700, MAT_GLASS=50) From 1639e46067dcf3d8566b078d445e88a78cbcc21d Mon Sep 17 00:00:00 2001 From: Chiefwaffles Date: Wed, 8 Jul 2015 20:08:46 -0700 Subject: [PATCH 2/3] Update cell.dm --- code/modules/power/cell.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index 9e06a10b769..83df8f18103 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -9,7 +9,7 @@ throwforce = 5.0 throw_speed = 2 throw_range = 5 - w_class = 2.0 //is that a power cell in your pocket, or are you happy to see me? + w_class = 2.0 var/charge = 0 // note %age conveted to actual charge in New var/maxcharge = 1000 materials = list(MAT_METAL=700, MAT_GLASS=50) @@ -276,4 +276,4 @@ return /obj/item/weapon/stock_parts/cell/emproof/corrupt() - return \ No newline at end of file + return From 71a397b3bd2d23bec321384c027973177c767971 Mon Sep 17 00:00:00 2001 From: Chiefwaffles Date: Thu, 9 Jul 2015 19:07:05 -0700 Subject: [PATCH 3/3] Super Big Change Removes ".0" from "2.0" --- code/modules/power/cell.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index 83df8f18103..63ac0410ec1 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -9,7 +9,7 @@ throwforce = 5.0 throw_speed = 2 throw_range = 5 - w_class = 2.0 + w_class = 2 var/charge = 0 // note %age conveted to actual charge in New var/maxcharge = 1000 materials = list(MAT_METAL=700, MAT_GLASS=50)