From e5792f869f23828113046cf9a31c133396003e40 Mon Sep 17 00:00:00 2001 From: Tim Young Date: Mon, 19 Mar 2018 13:37:20 -0500 Subject: [PATCH] Change the damage taken by trees. We can brush up against one and still make it through. But trees still give lots of damage... --- EduNetworkBuilder/NetworkLink.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EduNetworkBuilder/NetworkLink.cs b/EduNetworkBuilder/NetworkLink.cs index 52b950b..2559456 100644 --- a/EduNetworkBuilder/NetworkLink.cs +++ b/EduNetworkBuilder/NetworkLink.cs @@ -396,7 +396,7 @@ namespace EduNetworkBuilder { if (myNet.DeviceInTree(theLinkType, location)) { - tPacket.health -= 60; + tPacket.health -= 40; } } }