Skip to content

Commit

Permalink
Update templates.ts (#700)
Browse files Browse the repository at this point in the history
item_texture file supposed to be .json for storing texture data, not an image (.png)
  • Loading branch information
Keyyard authored Nov 28, 2024
1 parent 647dea3 commit 8d34d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/lib/lsp/commands/commands/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ export const TemplateCommands: TemplateItem[] = [
new TemplateItem(RPC.Entity, RPT.entity, "entity", "${{id.safe}}.entity.rp.json"),
new TemplateItem(RPC.Fog, RPT.fog, "fogs", "${{id.safe}}.fog.json"),
new TemplateItem(RPC.Flipbook_Textures, RPT.flipbook_textures, "textures", "flipbook_textures.json"),
new TemplateItem(RPC.Item_Texture, RPT.item_texture, "textures", "item_texture.png"),
new TemplateItem(RPC.Item_Texture, RPT.item_texture, "textures", "item_texture.json"),
new TemplateItem(RPC.Manifests, RPT.manifest, "manifest.json"),
new TemplateItem(RPC.Model, RPT.model, "models", "entity", "${{id.safe}}.geo.json"),
new TemplateItem(RPC.Music_Definitions, RPT.music_definitions, "sounds", "music_definitions.json"),
Expand Down

0 comments on commit 8d34d7f

Please sign in to comment.