|
可能需要加一个“不要轻易给非VRI船进行VRI无人化改造的”提示,据外网说VRI无人改造插件会引用一个名为“core”的“迷彩?”,好像是根据一个舰船列表来决定能否正常使用,如果船没在这列表里就会报错。以下是原文。
just to bring up what I mentioned on the VRI discord:
the volantian automation crash is NOT platform dependent, it's because of how it is coded.
the code uses a fixed table to select the 'core' cosmetic, based on hull ID. the game returns hull IDs differently (again, not case sensitivity here), problem of course being that there are hull IDs popping up that arent on the list. instead of checking for null, the code just goes...and crashes. the fix requires recompiling the mod. the source code is in /src/data/hullmods/VolantianRemnantConversion.java. the function in question is applyEffectsAfterShipCreation.
a 'reasonable' fix is to add a check for null...but since the 'core' visual looks awful on most ships (as in: it obscures the entire model on smaller ones) I ended up just removing the visual application entirely. to do so, just comment out everything within the function...or remove it. commenting is more recommended. then recompile. |
|