Tutorial Object deprecation message.

Discussion in 'Starbound Modding' started by OmnipotentEntity, Feb 18, 2014.

  1. OmnipotentEntity

    OmnipotentEntity Code Monkey Forum Administrator

    Hi there,

    Some of you may be noticing that you're getting the following message:

    Yes, it doesn't have the object name specified. My bad sorry :(

    What triggers it is any object that has the following line:

    Code:
    "objectType" : "interactive"
    So if you just do a text search for "interactive" in your .object files it should pull off the offending ones. From there you can either change type to loungeable if it's a bed or a chair or some place where you sit. Or just remove it altogether.

    Hope this helps.
     
    Last edited: Feb 19, 2014
    JustJoeNoBody likes this.
  2. madtulip

    madtulip Phantasmal Quasar

    for me it was triggered by .objects having the line
    Code:
    "objectType" : "interactable"
     
  3. OmnipotentEntity

    OmnipotentEntity Code Monkey Forum Administrator

    Right, corrected. Sorry. I was looking at the source and not the .object files. lol
     
  4. Daimoth

    Daimoth Scruffy Nerf-Herder

    Awesome, thanks. So if I remove "objectType" : "interactable" from, say, a crafting table or something, I'll still be able to interact with it?
     
  5. OmnipotentEntity

    OmnipotentEntity Code Monkey Forum Administrator

    Belated reply, but yes. All objects are now considered interactable.
     
    Daimoth likes this.

Share This Page