TheZoc / sourceforts-bug-tracker

Bug Tracker for the classic SourceForts HL2 Mod
10 stars 0 forks source link

Missing line of code in gameinfo.txt relating to /custom/ #74

Closed Nick12506 closed 5 years ago

Nick12506 commented 5 years ago

I couldn't get hammer to recongize my custom models/materials in hammer and with discord saw that

Line 57* of GameInfo should be

        game+mod            |gameinfo_path|custom/* 

Example below in gameinfo.txt of how it is in mine that caused the /custom/ to be picked up by hammer.

        game+mod            |gameinfo_path|vpk/sfclassic_materials.vpk
        game+mod            |gameinfo_path|vpk/sfclassic_models.vpk
        game+mod            |gameinfo_path|vpk/sfclassic_sound.vpk

        game+mod            |gameinfo_path|custom/*

        game+mod            hl2mp/custom/*
        game+mod            hl2/custom/*
TheZoc commented 5 years ago

Are the game assets done in the "first found, first serve" order?

if so, would this make sense?

        game+mod            |gameinfo_path|custom/*
        game+mod            hl2mp/custom/*
        game+mod            hl2/custom/*

        game+mod            |gameinfo_path|vpk/sfclassic_materials.vpk
        game+mod            |gameinfo_path|vpk/sfclassic_models.vpk
        game+mod            |gameinfo_path|vpk/sfclassic_sound.vpk
TheZoc commented 5 years ago

I think #73 is related to this

Nick12506 commented 5 years ago

I have not thought of this. I'll verify tonight.

Nick12506 commented 5 years ago

Yes, your edit fixed this issue.

Keep #73 open, I'm unsure of that one right now.