code-google-com / spacebuildmodelpack

Automatically exported from code.google.com/p/spacebuildmodelpack
0 stars 0 forks source link

Several of the LS Livable Modules do not spawn correctly #33

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Affected Modules are:
SmallBridge, Cockpit 1
SmallBridge, DoubleWidth Engine 1
SmallBridge, Door Hull 2, SW
SmallBridge, Door Hull, DW
SmallBridge, Door Hull, SW
SmallBridge, Empty Flip
SmallBridge, Engine 1
SmallBridge, Engine SW Left
SmallBridge, Engine SW Middle
SmallBridge, Engine SW Right
SmallBridge, SmallBridge to Medbridge

What steps will reproduce the problem?
1. Start a SpaceBuild game/server
2. Open the LifeSupport tab
3. Spawn one of the affected modules using the livable modules STool

What should happen? What actually happens?
The module should spawn, and a tool-tip showing coolant, air, and energy
should appear when you look closely at the module. Instead, an Error model
is made.

What version are you using (if SVN give revision number)?
SVN Revision 552

Please provide any additional information below.
I have deleted the model pack and re-downloaded it using Tortoise SVN and I
still get the error model.

Original issue reported on code.google.com by Squikker...@Yahoo.com on 7 Apr 2008 at 12:34

GoogleCodeExporter commented 9 years ago
I've looked through config.lua, since I've been having this same problem.  I've
noticed that the paths to the models in the lua are not correct compared to 
what they
should be.  For example, for Cockpit 1, the path in the lua is:

models/SmallBridge/SBbridge1/sbbridge1.mdl

But is seems like it should actually be:

models/SmallBridge/SBbridge1s/sbbridge1s.mdl

I'm guessing that what may have happened was that there was a name change for 
some of
the models, for whatever reason, but config.lua was never updated in the 
autorun folder.

Also, I think there may be more models for LS Livable Modules that may be 
effected,
since I seem to recall seeing more missing model errors than what is listed 
here. 
I'll look further into this later, and quite possibly attach a fixed config.lua.

Original comment by delwynn...@gmail.com on 11 Apr 2008 at 6:27

GoogleCodeExporter commented 9 years ago
Revision 562 fixes most of the path mismatch problems in config.lua.  However, 
there
are still 4 with mismatches.  However, only one of them is due to not being 
updated
to the current path naming scheme.  The other three are because of an accidental
double extension of the file in the path definition in config.lua.

The non-updated line (line number followed by actual code):
144 AddLSShipHabModel("SmallBridge, Empty
Flip","models/SmallBridge/SBcorridorFlip/sbcorridorflip.mdl")

And the double extension lines:
156 AddLSShipHabModel("SmallBridge, Empty Door Hull,
SW","models/SmallBridge/SBhullEdoors/sbhulledoors.mdl.mdl")
157 AddLSShipHabModel("SmallBridge, Empty Door Hull 2,
DW","models/SmallBridge/SBhullEdoorsdw2/sbhulledoorsdw2.mdl.mdl")
159 AddLSShipHabModel("SmallBridge, Empty Door Hull 2,
SW","models/SmallBridge/SBhullEdoors2/sbhulledoors2.mdl.mdl")

Original comment by delwynn...@gmail.com on 12 Apr 2008 at 5:01