安装 Steam
登录
|
语言
繁體中文(繁体中文)
日本語(日语)
한국어(韩语)
ไทย(泰语)
български(保加利亚语)
Čeština(捷克语)
Dansk(丹麦语)
Deutsch(德语)
English(英语)
Español-España(西班牙语 - 西班牙)
Español - Latinoamérica(西班牙语 - 拉丁美洲)
Ελληνικά(希腊语)
Français(法语)
Italiano(意大利语)
Bahasa Indonesia(印度尼西亚语)
Magyar(匈牙利语)
Nederlands(荷兰语)
Norsk(挪威语)
Polski(波兰语)
Português(葡萄牙语 - 葡萄牙)
Português-Brasil(葡萄牙语 - 巴西)
Română(罗马尼亚语)
Русский(俄语)
Suomi(芬兰语)
Svenska(瑞典语)
Türkçe(土耳其语)
Tiếng Việt(越南语)
Українська(乌克兰语)
报告翻译问题
Thank you for the report! The issue should be fixed now.
@What? Is that? What? Huh?
Your message lacks any information that could be useful for diagnosing the issue. What prevents you from running the game? Does it crash before getting to the mod selection screen, or after, or does it not function normally, or what?
模组出现了一个导致游戏崩溃的错误。在BaseMod.PassiveAbilityExtension.FindActivatedPassives方法中,代码错误地试图从一个新建的空列表中获取元素,导致了ArgumentOutOfRangeException
T obj = activatedPassives[index]; // Wrong!
应该是T obj = passiveList [index];
请修复
Subject: Mod Bug Report: Index Error in FindActivatedPassives Method
There's a crash in mod. In the BaseMod.PassiveAbilityExtension.FindActivatedPassives method, the code incorrectly tries to get an item from a newly created empty list, causing an ArgumentOutOfRangeException.
Problem line:
T obj = activatedPassives[index]; // Wrong line
Solution:
It should get the item from passiveList instead:
T obj = passiveList [index]
(Use DeepSeek Translation)
Open the game's properties on Steam, "selected launch option" should be right in the General tab.
Are you using the "LOR With Mods" launch option?
There is no 2.9 version of Basemod for Workshop. You're likely looking for the 2.9 version of Harmony library, which is included in Basemod for Workshop. Restart your game to make Basemod go first in the loading order.