From 282d44ec68b56443e3257b3555658442f4ec221e Mon Sep 17 00:00:00 2001 From: otta8634 Date: Mon, 23 Dec 2024 01:26:01 +0800 Subject: [PATCH] Relocate includes to prevent pipeline failure Not sure why these includes are located here anyway. --- qcsrc/menu/xonotic/guide/guide.qh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/qcsrc/menu/xonotic/guide/guide.qh b/qcsrc/menu/xonotic/guide/guide.qh index f44bd2c0c..de9d085fc 100644 --- a/qcsrc/menu/xonotic/guide/guide.qh +++ b/qcsrc/menu/xonotic/guide/guide.qh @@ -64,17 +64,17 @@ REGISTRY_SOURCE(FreetextSource, Guide, GuidePages) REGISTRY_SOURCE(GametypeSource, Gametypes, Gametypes) // The descriptions for these are in common/gamemodes/gamemode/*/*.qh -#include -REGISTRY_SOURCE(ItemSource, Items, Items, !it.instanceOfPowerup) -// The descriptions for these are in common/items/item/*.qc and common/mutators/mutator/instagib/items.qc +#include +REGISTRY_SOURCE(BuffSource, Buffs, StatusEffect, it.instanceOfBuff) +// The descriptions for these are in common/mutators/mutator/buffs/all.inc #include REGISTRY_SOURCE(PowerupSource, Powerups, Items, it.instanceOfPowerup) // The descriptions for these are in common/mutators/mutator/powerups/powerup/*.qc and common/items/item/jetpack.qc -#include -REGISTRY_SOURCE(BuffSource, Buffs, StatusEffect, it.instanceOfBuff) -// The descriptions for these are in common/mutators/mutator/buffs/all.inc +#include +REGISTRY_SOURCE(ItemSource, Items, Items, !it.instanceOfPowerup) +// The descriptions for these are in common/items/item/*.qc and common/mutators/mutator/instagib/items.qc #include REGISTRY_SOURCE(NadeSource, Nades, Nades) -- 2.39.2