From: otta8634 Date: Sun, 22 Dec 2024 10:19:07 +0000 (+0800) Subject: Add some documentation showing the location of guide descriptions X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3bfb66e441185d6a8579b553bc0b82e80563b806;p=xonotic%2Fxonotic-data.pk3dir.git Add some documentation showing the location of guide descriptions This will hopefully make them a bit easier to find if someone inexperienced with the codebase wants to try to edit the guide. I think still they're require someone to point them in the right place though, but this is better than nothing. --- diff --git a/qcsrc/menu/xonotic/guide/guide.qh b/qcsrc/menu/xonotic/guide/guide.qh index 1b940049d..64c176725 100644 --- a/qcsrc/menu/xonotic/guide/guide.qh +++ b/qcsrc/menu/xonotic/guide/guide.qh @@ -57,24 +57,31 @@ REGISTRY_SOURCE(FreetextSource, GuidePages) #include REGISTRY_SOURCE(GametypeSource, Gametypes) +// The descriptions for these are in common/gamemodes/gamemode/*/*.qh #include REGISTRY_SOURCE(ItemSource, Items) +// The descriptions for these are in common/items/item/*.qc and common/mutators/mutator/instagib/items.qc #include REGISTRY_SOURCE(BuffSource, StatusEffect) +// The descriptions for these are in common/mutators/mutator/buffs/all.inc and common/mutators/mutator/powerups/powerup/*.qc #include REGISTRY_SOURCE(NadeSource, Nades) +// The descriptions for these are in common/mutators/mutator/nades/all.inc #include REGISTRY_SOURCE(WeaponSource, Weapons) +// The descriptions for these are in common/weapons/weapon/*.qc and common/mutators/mutator/overkill/ok*.qc #include REGISTRY_SOURCE(MonsterSource, Monsters) +// The descriptions for these are in common/monsters/monster/*.qc #include REGISTRY_SOURCE(VehicleSource, Vehicles) +// The descriptions for these are in common/vehicles/vehicle/*.qc #include REGISTRY_SOURCE(TurretSource, Turrets)