mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-27 11:35:22 +09:00
.
This commit is contained in:
@@ -372,13 +372,14 @@ local function handle_input_interfaces()
|
|||||||
local count_deduct
|
local count_deduct
|
||||||
local count_add
|
local count_add
|
||||||
|
|
||||||
if v.quality.level == 1 then
|
if prototypes.quality[v.quality].level == 1 then
|
||||||
count_deduct = v.count
|
count_deduct = v.count
|
||||||
count_add = v.count
|
count_add = v.count
|
||||||
|
|
||||||
elseif prototypes.quality[v.quality].level > 1 and v.count >= 10 then
|
elseif prototypes.quality[v.quality].level > 1 and v.count >= 10 then
|
||||||
count_deduct = math.floor(v.count / 10)
|
local batch = math.floor(v.count / 10)
|
||||||
count_add = count_deduct * (7 + (prototypes.quality[v.quality].level * 3))
|
count_deduct = batch * 10
|
||||||
|
count_add = batch * (7 + (prototypes.quality[v.quality].level * 3))
|
||||||
end
|
end
|
||||||
|
|
||||||
if count_deduct and count_add then
|
if count_deduct and count_add then
|
||||||
|
|||||||
Reference in New Issue
Block a user