Installera Steam
logga in
|
språk
简体中文 (förenklad kinesiska)
繁體中文 (traditionell kinesiska)
日本語 (japanska)
한국어 (koreanska)
ไทย (thailändska)
Български (bulgariska)
Čeština (tjeckiska)
Dansk (danska)
Deutsch (tyska)
English (engelska)
Español – España (spanska – Spanien)
Español – Latinoamérica (spanska – Latinamerika)
Ελληνικά (grekiska)
Français (franska)
Italiano (italienska)
Bahasa Indonesia (indonesiska)
Magyar (ungerska)
Nederlands (nederländska)
Norsk (norska)
Polski (polska)
Português (portugisiska – Portugal)
Português – Brasil (portugisiska – Brasilien)
Română (rumänska)
Русский (ryska)
Suomi (finska)
Türkçe (turkiska)
Tiếng Việt (vietnamesiska)
Українська (ukrainska)
Rapportera problem med översättningen
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.