From a79caa12c2b8586973ad3bb31751f06b0e109a22 Mon Sep 17 00:00:00 2001 From: PHIDIAS <10016767+PHIDIAS0303@users.noreply.github.com> Date: Thu, 1 Dec 2022 20:22:04 +0900 Subject: [PATCH] Update prototypes.lua --- PHI-EN/prototypes.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PHI-EN/prototypes.lua b/PHI-EN/prototypes.lua index 8d8fdf6..6a5663b 100644 --- a/PHI-EN/prototypes.lua +++ b/PHI-EN/prototypes.lua @@ -47,11 +47,11 @@ local function EE(source, tier) end local function ER(source, tier) - name = source + na = source if (tier >= 3) then - name = name .. "-mk" .. (tier - 1) + na = na .. "-mk" .. (tier - 1) end data:extend({{ @@ -59,7 +59,7 @@ local function ER(source, tier) name = source .. "-mk" .. tier, energy_required = 5, enabled = "false", - ingredients = {{name, 4}}, + ingredients = {{na, 4}}, result = source .. "-mk" .. tier, }}) end