Aleksei-bird 7c9c708c92 Первый фикс
Пачки некоторых позиций увеличены
2024-03-01 20:54:33 +03:00

10 lines
292 B
Lua

local modwarning = require "modwarning"
local function autowarning(name)
if string.find(name, "tank") or string.find(name, "splitter") then
modwarning("possible tank or splitter not flipped (name="..tostring(name).."). Please report it to the mod's Author.")
end
end
return autowarning