From 137f9a0d55b6e213eca4ba3c5b7ea645d67c67bd Mon Sep 17 00:00:00 2001 From: MrZ_26 <1046101471@qq.com> Date: Thu, 6 Jun 2024 17:38:05 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E4=B8=A4=E4=B8=AA=E6=B6=88=E5=9B=9B?= =?UTF-8?q?=E6=A8=A1=E5=BC=8F=E7=9A=84=E8=AF=84=E7=BA=A7=E4=B8=8D=E7=AD=89?= =?UTF-8?q?=E5=8F=B7=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- parts/modes/techrash_n.lua | 2 +- parts/modes/techrash_u.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/parts/modes/techrash_n.lua b/parts/modes/techrash_n.lua index b6e7f6be..671505a6 100644 --- a/parts/modes/techrash_n.lua +++ b/parts/modes/techrash_n.lua @@ -12,7 +12,7 @@ return { T>=100 and 5 or T>=75 and 4 or T>=50 and 3 or - T==30 and 2 or + T>=30 and 2 or T>=15 and 1 or T>=5 and 0 end, diff --git a/parts/modes/techrash_u.lua b/parts/modes/techrash_u.lua index 8dd34d99..c8f4a520 100644 --- a/parts/modes/techrash_u.lua +++ b/parts/modes/techrash_u.lua @@ -12,7 +12,7 @@ return { T>=20 and 5 or T>=16 and 4 or T>=12 and 3 or - T==8 and 2 or + T>=8 and 2 or T>=4 and 1 or T>=2 and 0 end,