public static int RemoveEveryTimeArmyRandomSeed(IntPtr l)
    {
        int result;

        try
        {
            DataSectionBattle dataSectionBattle = (DataSectionBattle)LuaObject.checkSelf(l);
            int battleId;
            LuaObject.checkType(l, 2, out battleId);
            dataSectionBattle.RemoveEveryTimeArmyRandomSeed(battleId);
            LuaObject.pushValue(l, true);
            result = 1;
        }
        catch (Exception e)
        {
            result = LuaObject.error(l, e);
        }
        return(result);
    }