From 22ca27364dafcf350cc2ae0f0c27fe83f3b7d1bc Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Mon, 10 Jun 2013 20:04:06 -0400 Subject: [PATCH] On second thought, add those prefixes back, it helps a bit --- qcsrc/common/weapons/all.qh | 38 +++++++++---------- qcsrc/common/weapons/{arc.qc => w_arc.qc} | 0 qcsrc/common/weapons/{arc.qh => w_arc.qh} | 0 .../weapons/{blaster.qc => w_blaster.qc} | 0 .../weapons/{crylink.qc => w_crylink.qc} | 0 .../{devastator.qc => w_devastator.qc} | 0 .../weapons/{electro.qc => w_electro.qc} | 0 .../weapons/{electro.qh => w_electro.qh} | 0 .../weapons/{fireball.qc => w_fireball.qc} | 0 qcsrc/common/weapons/{hagar.qc => w_hagar.qc} | 0 qcsrc/common/weapons/{hlac.qc => w_hlac.qc} | 0 qcsrc/common/weapons/{hook.qc => w_hook.qc} | 0 .../{machinegun.qc => w_machinegun.qc} | 0 .../weapons/{minelayer.qc => w_minelayer.qc} | 0 .../weapons/{minstanex.qc => w_minstanex.qc} | 0 .../common/weapons/{mortar.qc => w_mortar.qc} | 0 qcsrc/common/weapons/{nex.qc => w_nex.qc} | 0 qcsrc/common/weapons/{porto.qc => w_porto.qc} | 0 qcsrc/common/weapons/{rifle.qc => w_rifle.qc} | 0 .../common/weapons/{seeker.qc => w_seeker.qc} | 0 .../weapons/{shockwave.qc => w_shockwave.qc} | 0 qcsrc/common/weapons/{tuba.qc => w_tuba.qc} | 0 22 files changed, 19 insertions(+), 19 deletions(-) rename qcsrc/common/weapons/{arc.qc => w_arc.qc} (100%) rename qcsrc/common/weapons/{arc.qh => w_arc.qh} (100%) rename qcsrc/common/weapons/{blaster.qc => w_blaster.qc} (100%) rename qcsrc/common/weapons/{crylink.qc => w_crylink.qc} (100%) rename qcsrc/common/weapons/{devastator.qc => w_devastator.qc} (100%) rename qcsrc/common/weapons/{electro.qc => w_electro.qc} (100%) rename qcsrc/common/weapons/{electro.qh => w_electro.qh} (100%) rename qcsrc/common/weapons/{fireball.qc => w_fireball.qc} (100%) rename qcsrc/common/weapons/{hagar.qc => w_hagar.qc} (100%) rename qcsrc/common/weapons/{hlac.qc => w_hlac.qc} (100%) rename qcsrc/common/weapons/{hook.qc => w_hook.qc} (100%) rename qcsrc/common/weapons/{machinegun.qc => w_machinegun.qc} (100%) rename qcsrc/common/weapons/{minelayer.qc => w_minelayer.qc} (100%) rename qcsrc/common/weapons/{minstanex.qc => w_minstanex.qc} (100%) rename qcsrc/common/weapons/{mortar.qc => w_mortar.qc} (100%) rename qcsrc/common/weapons/{nex.qc => w_nex.qc} (100%) rename qcsrc/common/weapons/{porto.qc => w_porto.qc} (100%) rename qcsrc/common/weapons/{rifle.qc => w_rifle.qc} (100%) rename qcsrc/common/weapons/{seeker.qc => w_seeker.qc} (100%) rename qcsrc/common/weapons/{shockwave.qc => w_shockwave.qc} (100%) rename qcsrc/common/weapons/{tuba.qc => w_tuba.qc} (100%) diff --git a/qcsrc/common/weapons/all.qh b/qcsrc/common/weapons/all.qh index 37458a6ab..de6266f3d 100644 --- a/qcsrc/common/weapons/all.qh +++ b/qcsrc/common/weapons/all.qh @@ -3,24 +3,24 @@ // IF YOU DISREGARD THIS NOTICE, I'LL KILL YOU WITH THE @!#%'N TUBA // core weapons -#include "blaster.qc" -#include "shockwave.qc" -#include "machinegun.qc" -#include "mortar.qc" -#include "minelayer.qc" -#include "electro.qc" -#include "arc.qc" -#include "crylink.qc" -#include "nex.qc" -#include "hagar.qc" -#include "devastator.qc" +#include "w_blaster.qc" +#include "w_shockwave.qc" +#include "w_machinegun.qc" +#include "w_mortar.qc" +#include "w_minelayer.qc" +#include "w_electro.qc" +#include "w_arc.qc" +#include "w_crylink.qc" +#include "w_nex.qc" +#include "w_hagar.qc" +#include "w_devastator.qc" // other weapons -#include "porto.qc" -#include "minstanex.qc" -#include "hook.qc" -#include "hlac.qc" -#include "tuba.qc" -#include "rifle.qc" -#include "fireball.qc" -#include "seeker.qc" +#include "w_porto.qc" +#include "w_minstanex.qc" +#include "w_hook.qc" +#include "w_hlac.qc" +#include "w_tuba.qc" +#include "w_rifle.qc" +#include "w_fireball.qc" +#include "w_seeker.qc" diff --git a/qcsrc/common/weapons/arc.qc b/qcsrc/common/weapons/w_arc.qc similarity index 100% rename from qcsrc/common/weapons/arc.qc rename to qcsrc/common/weapons/w_arc.qc diff --git a/qcsrc/common/weapons/arc.qh b/qcsrc/common/weapons/w_arc.qh similarity index 100% rename from qcsrc/common/weapons/arc.qh rename to qcsrc/common/weapons/w_arc.qh diff --git a/qcsrc/common/weapons/blaster.qc b/qcsrc/common/weapons/w_blaster.qc similarity index 100% rename from qcsrc/common/weapons/blaster.qc rename to qcsrc/common/weapons/w_blaster.qc diff --git a/qcsrc/common/weapons/crylink.qc b/qcsrc/common/weapons/w_crylink.qc similarity index 100% rename from qcsrc/common/weapons/crylink.qc rename to qcsrc/common/weapons/w_crylink.qc diff --git a/qcsrc/common/weapons/devastator.qc b/qcsrc/common/weapons/w_devastator.qc similarity index 100% rename from qcsrc/common/weapons/devastator.qc rename to qcsrc/common/weapons/w_devastator.qc diff --git a/qcsrc/common/weapons/electro.qc b/qcsrc/common/weapons/w_electro.qc similarity index 100% rename from qcsrc/common/weapons/electro.qc rename to qcsrc/common/weapons/w_electro.qc diff --git a/qcsrc/common/weapons/electro.qh b/qcsrc/common/weapons/w_electro.qh similarity index 100% rename from qcsrc/common/weapons/electro.qh rename to qcsrc/common/weapons/w_electro.qh diff --git a/qcsrc/common/weapons/fireball.qc b/qcsrc/common/weapons/w_fireball.qc similarity index 100% rename from qcsrc/common/weapons/fireball.qc rename to qcsrc/common/weapons/w_fireball.qc diff --git a/qcsrc/common/weapons/hagar.qc b/qcsrc/common/weapons/w_hagar.qc similarity index 100% rename from qcsrc/common/weapons/hagar.qc rename to qcsrc/common/weapons/w_hagar.qc diff --git a/qcsrc/common/weapons/hlac.qc b/qcsrc/common/weapons/w_hlac.qc similarity index 100% rename from qcsrc/common/weapons/hlac.qc rename to qcsrc/common/weapons/w_hlac.qc diff --git a/qcsrc/common/weapons/hook.qc b/qcsrc/common/weapons/w_hook.qc similarity index 100% rename from qcsrc/common/weapons/hook.qc rename to qcsrc/common/weapons/w_hook.qc diff --git a/qcsrc/common/weapons/machinegun.qc b/qcsrc/common/weapons/w_machinegun.qc similarity index 100% rename from qcsrc/common/weapons/machinegun.qc rename to qcsrc/common/weapons/w_machinegun.qc diff --git a/qcsrc/common/weapons/minelayer.qc b/qcsrc/common/weapons/w_minelayer.qc similarity index 100% rename from qcsrc/common/weapons/minelayer.qc rename to qcsrc/common/weapons/w_minelayer.qc diff --git a/qcsrc/common/weapons/minstanex.qc b/qcsrc/common/weapons/w_minstanex.qc similarity index 100% rename from qcsrc/common/weapons/minstanex.qc rename to qcsrc/common/weapons/w_minstanex.qc diff --git a/qcsrc/common/weapons/mortar.qc b/qcsrc/common/weapons/w_mortar.qc similarity index 100% rename from qcsrc/common/weapons/mortar.qc rename to qcsrc/common/weapons/w_mortar.qc diff --git a/qcsrc/common/weapons/nex.qc b/qcsrc/common/weapons/w_nex.qc similarity index 100% rename from qcsrc/common/weapons/nex.qc rename to qcsrc/common/weapons/w_nex.qc diff --git a/qcsrc/common/weapons/porto.qc b/qcsrc/common/weapons/w_porto.qc similarity index 100% rename from qcsrc/common/weapons/porto.qc rename to qcsrc/common/weapons/w_porto.qc diff --git a/qcsrc/common/weapons/rifle.qc b/qcsrc/common/weapons/w_rifle.qc similarity index 100% rename from qcsrc/common/weapons/rifle.qc rename to qcsrc/common/weapons/w_rifle.qc diff --git a/qcsrc/common/weapons/seeker.qc b/qcsrc/common/weapons/w_seeker.qc similarity index 100% rename from qcsrc/common/weapons/seeker.qc rename to qcsrc/common/weapons/w_seeker.qc diff --git a/qcsrc/common/weapons/shockwave.qc b/qcsrc/common/weapons/w_shockwave.qc similarity index 100% rename from qcsrc/common/weapons/shockwave.qc rename to qcsrc/common/weapons/w_shockwave.qc diff --git a/qcsrc/common/weapons/tuba.qc b/qcsrc/common/weapons/w_tuba.qc similarity index 100% rename from qcsrc/common/weapons/tuba.qc rename to qcsrc/common/weapons/w_tuba.qc -- 2.39.2