Fractal Softworks Forum

Please login or register.

Login with username, password and session length

Author Topic: Can't find source of error (Solved (or at least located))  (Read 1949 times)

ORMtnMan

  • Commander
  • ***
  • Posts: 148
    • View Profile
Can't find source of error (Solved (or at least located))
« on: October 20, 2014, 07:42:47 PM »

22851 [Thread-5] ERROR com.fs.starfarer.combat.D  - java.lang.AbstractMethodError
java.lang.AbstractMethodError
   at com.fs.starfarer.title.C.K$Oo.new(Unknown Source)
   at com.fs.starfarer.combat.oOOO.B.Ò00000(Unknown Source)
   at com.fs.starfarer.combat.oOoO.Oôo000(Unknown Source)
   at com.fs.super.A.Ò00000(Unknown Source)
   at com.fs.starfarer.combat.D.super(Unknown Source)
   at com.fs.starfarer.StarfarerLauncher$2.run(Unknown Source)
   at java.lang.Thread.run(Unknown Source)

I usually get errors that help me pinpoint where the issue is... This happens when I try to load up the test mission for my mod faction. My mission file is basically the same, my csvs match, my hull files are the same... not sure what is causing this. (I even check my ship system, which matches)
« Last Edit: October 20, 2014, 08:50:29 PM by ORMtnMan »
Logged
Creator and lord of The Ashkurr Commonwealth

Sprite artist and designer for Naysmyth Armouries

Alex

  • Administrator
  • Admiral
  • *****
  • Posts: 24105
    • View Profile
Re: Can't find source of error
« Reply #1 on: October 20, 2014, 08:04:37 PM »

Possibly you have a EveryFrameCombatPlugin that doesn't implement all the methods? There are some new ones there.


public interface EveryFrameCombatPlugin extends CombatEnginePlugin {
   void advance(float amount, List<InputEventAPI> events);
   void renderInWorldCoords(ViewportAPI viewport);
   void renderInUICoords(ViewportAPI viewport);
}
Logged

ORMtnMan

  • Commander
  • ***
  • Posts: 148
    • View Profile
Re: Can't find source of error
« Reply #2 on: October 20, 2014, 08:31:16 PM »

Well, that helps. Let me do some digging.

Danke Alex

EDIT: Your help there got me to at least quarantine the error so I can play other parts of my mod... now to figure out how to fix the error...

Consider this one solved, thank you.
« Last Edit: October 20, 2014, 08:49:59 PM by ORMtnMan »
Logged
Creator and lord of The Ashkurr Commonwealth

Sprite artist and designer for Naysmyth Armouries