From 223c4cb9dc0c6e5ba00654e36aa611e06e97d533 Mon Sep 17 00:00:00 2001 From: jsb5468 Date: Wed, 23 Jan 2019 23:17:12 -0500 Subject: [PATCH] Ball Smother Implemation 5 fixed clipping between ball smother states --- recursive-desc.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/recursive-desc.js b/recursive-desc.js index 1528cd7..4eabca6 100644 --- a/recursive-desc.js +++ b/recursive-desc.js @@ -2442,11 +2442,11 @@ rules["ball-smother"].push({ } }); -//Balls Weigh 1e25 kg or less +//Balls Weigh 1e24 kg or less rules["ball-smother"].push({ "test": function(container, macro) { - return macro.ballMass <= 1e25 && + return macro.ballMass <= 1e24 && macro.ballMass > 1e20 && isNonFatal(macro); @@ -2456,7 +2456,7 @@ rules["ball-smother"].push({ }); rules["ball-smother"].push({ "test": function(container, macro) { - return macro.ballMass <= 1e25 && + return macro.ballMass <= 1e24 && macro.ballMass > 1e20 && isFatal(macro); @@ -2467,7 +2467,7 @@ rules["ball-smother"].push({ }); rules["ball-smother"].push({ "test": function(container, macro) { - return macro.ballMass <= 1e25 && + return macro.ballMass <= 1e24 && macro.ballMass > 1e20 && isGory(macro); @@ -2479,7 +2479,7 @@ rules["ball-smother"].push({ rules["ball-smother"].push({ "test": function(container, macro) { - return macro.ballMass <= 1e25 && + return macro.ballMass <= 1e24 && macro.ballMass > 1e20 && isSadistic(macro);