feature/effects #37

Manually merged
neckrat merged 64 commits from feature/effects into main 2026-05-06 10:19:49 +03:00
Showing only changes of commit c7a41676c2 - Show all commits

View File

@ -161,16 +161,9 @@ end
--- @return Effect
local function new(data)
local newEffect = setmetatable({
tag = data.tag
tag = data.tag,
}, effect)
--- дип сравнение эффектов
--- @param other Effect
--- @return boolean
function newEffect:__eq(other)
return utils.deepComparison(self, other)
end
return newEffect
end