Jump to content

SaladTim

Member
  • Posts

    2
  • Joined

  • Last visited

SaladTim's Achievements

  1. Hello, i'm working on my first mod and have very little experience. I am mostly looking through game files and other mods to get a feel for how things work, haven't really started working with lua yet. In this mod I have added a hotdog bun (using the bread slice image as a placeholder) which the player can right click on and combine with things like sausage chili onion or cabbage to create a hotdog recipe item. The problem is that when I right click on the bun, the context menu option has additional text that I can't seem to get rid of. I want it to just read "Prepare Hotdog" like i wrote in the 'evolved recipes' file, but as you can see in the attached image it does not. In the 'evolved recipes' file i have also included the burger recipe from the game files for comparison. text from the evolved recipes file: [spoiler][code] module Base { evolvedrecipe Hotdog { BaseItem:HotdogBun, MaxItems:3, ResultItem:HotdogRecipe, AddIngredientIfCooked:true, Name:Prepare Hotdog, } /* evolvedrecipe Burger { BaseItem:BreadSlices, MaxItems:4, ResultItem:BurgerRecipe, Name:Prepare Burger, AddIngredientIfCooked:true, } */ } [/code][/spoiler]
×
×
  • Create New...