From 3bfb66e441185d6a8579b553bc0b82e80563b806 Mon Sep 17 00:00:00 2001 From: otta8634 Date: Sun, 22 Dec 2024 18:19:07 +0800 Subject: [PATCH] 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. --- qcsrc/menu/xonotic/guide/guide.qh | 7 +++++++ 1 file changed, 7 insertions(+) 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) -- 2.39.2