Fractal Softworks Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Starsector 0.97a is out! (02/02/24); New blog post: Planet Search Overhaul (07/13/24)

Author Topic: My shipyard stopped building ships  (Read 726 times)

rogerbacon

  • Commander
  • ***
  • Posts: 154
    • View Profile
My shipyard stopped building ships
« on: October 16, 2023, 06:59:09 PM »

For some reason my shipyards have stopped building ships. I've had a small order in for months and it never finishes. The shipyards are not disrupted and I've cleared the queue and resubmitted it many times. Has anyone ever had this happen and/or know why it happens?

Logged

SCC

  • Admiral
  • *****
  • Posts: 4235
    • View Profile
Re: My shipyard stopped building ships
« Reply #1 on: October 16, 2023, 10:22:13 PM »

Tell creators of mod(s) these ships and wings come from those ships are missing their ship roles file entry. Because of this, those ships cannot be built.

Histidine

  • Admiral
  • *****
  • Posts: 4900
    • View Profile
    • GitHub profile
Re: My shipyard stopped building ships
« Reply #2 on: October 17, 2023, 05:12:37 AM »

In 0.96 those ships should be build nevertheless AFAIK. Have you updated your Starsector?
Logged

rogerbacon

  • Commander
  • ***
  • Posts: 154
    • View Profile
Re: My shipyard stopped building ships
« Reply #3 on: October 17, 2023, 05:51:55 AM »

In 0.96 those ships should be build nevertheless AFAIK. Have you updated your Starsector?
Yes, I'm running the latest version of StarSector. Also, I've build those ships before in previous games. I've never had a monthly shipbuilding number so high before and had more than one heavy industry planet. Maybe that has something to do with it?

Edit:
Same with core game ships.
« Last Edit: October 17, 2023, 07:13:41 AM by rogerbacon »
Logged

Histidine

  • Admiral
  • *****
  • Posts: 4900
    • View Profile
    • GitHub profile
Re: My shipyard stopped building ships
« Reply #4 on: October 17, 2023, 05:56:13 PM »

Does the money get deducted at the end of month?

If not, it's possible the game's CoreScript partly or completely stopped running, although a sufficiently severe failure here would break multiple things (star systems not being marked as explored on entry, monthly financial report not appearing, among others), and I don't know what mod would do this.

Quick Console Commands runcode to check (copy and paste):
Code: java
runcode for (EveryFrameScript script : Global.getSector().getScripts()) {
if (script instanceof com.fs.starfarer.api.impl.campaign.CoreScript) {
Console.showMessage("Running core script " + script);
}
}
Logged