From: otta8634 Date: Sun, 22 Dec 2024 17:26:01 +0000 (+0800) Subject: Relocate includes to prevent pipeline failure X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=282d44ec68b56443e3257b3555658442f4ec221e;p=xonotic%2Fxonotic-data.pk3dir.git Relocate includes to prevent pipeline failure Not sure why these includes are located here anyway. --- 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)