From 2ecf0286578921190fa0177050ee8f5079426722 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Mon, 10 Jun 2013 17:44:59 -0400 Subject: [PATCH] Remove the w_ prefix from weapon files in their directory --- .../weapons/{w_crylink.qc => crylink.qc} | 0 .../weapons/{w_electro.qc => electro.qc} | 0 .../weapons/{w_electro.qh => electro.qh} | 0 .../weapons/{w_fireball.qc => fireball.qc} | 0 ..._grenadelauncher.qc => grenadelauncher.qc} | 0 qcsrc/common/weapons/{w_hagar.qc => hagar.qc} | 0 qcsrc/common/weapons/{w_hlac.qc => hlac.qc} | 0 qcsrc/common/weapons/{w_hook.qc => hook.qc} | 0 qcsrc/common/weapons/{w_laser.qc => laser.qc} | 0 .../weapons/{w_lightning.qc => lightning.qc} | 0 .../weapons/{w_lightning.qh => lightning.qh} | 0 .../weapons/{w_minelayer.qc => minelayer.qc} | 0 .../weapons/{w_minstanex.qc => minstanex.qc} | 0 qcsrc/common/weapons/{w_nex.qc => nex.qc} | 0 qcsrc/common/weapons/{w_porto.qc => porto.qc} | 0 qcsrc/common/weapons/{w_rifle.qc => rifle.qc} | 0 ...{w_rocketlauncher.qc => rocketlauncher.qc} | 0 .../common/weapons/{w_seeker.qc => seeker.qc} | 0 .../weapons/{w_shotgun.qc => shotgun.qc} | 0 qcsrc/common/weapons/{w_tuba.qc => tuba.qc} | 0 qcsrc/common/weapons/{w_uzi.qc => uzi.qc} | 0 qcsrc/common/weapons/w_all.qc | 22 ------------------- qcsrc/common/weapons/weapons.qh | 22 +++++++++++++++++++ 23 files changed, 22 insertions(+), 22 deletions(-) rename qcsrc/common/weapons/{w_crylink.qc => crylink.qc} (100%) rename qcsrc/common/weapons/{w_electro.qc => electro.qc} (100%) rename qcsrc/common/weapons/{w_electro.qh => electro.qh} (100%) rename qcsrc/common/weapons/{w_fireball.qc => fireball.qc} (100%) rename qcsrc/common/weapons/{w_grenadelauncher.qc => grenadelauncher.qc} (100%) rename qcsrc/common/weapons/{w_hagar.qc => hagar.qc} (100%) rename qcsrc/common/weapons/{w_hlac.qc => hlac.qc} (100%) rename qcsrc/common/weapons/{w_hook.qc => hook.qc} (100%) rename qcsrc/common/weapons/{w_laser.qc => laser.qc} (100%) rename qcsrc/common/weapons/{w_lightning.qc => lightning.qc} (100%) rename qcsrc/common/weapons/{w_lightning.qh => lightning.qh} (100%) rename qcsrc/common/weapons/{w_minelayer.qc => minelayer.qc} (100%) rename qcsrc/common/weapons/{w_minstanex.qc => minstanex.qc} (100%) rename qcsrc/common/weapons/{w_nex.qc => nex.qc} (100%) rename qcsrc/common/weapons/{w_porto.qc => porto.qc} (100%) rename qcsrc/common/weapons/{w_rifle.qc => rifle.qc} (100%) rename qcsrc/common/weapons/{w_rocketlauncher.qc => rocketlauncher.qc} (100%) rename qcsrc/common/weapons/{w_seeker.qc => seeker.qc} (100%) rename qcsrc/common/weapons/{w_shotgun.qc => shotgun.qc} (100%) rename qcsrc/common/weapons/{w_tuba.qc => tuba.qc} (100%) rename qcsrc/common/weapons/{w_uzi.qc => uzi.qc} (100%) delete mode 100644 qcsrc/common/weapons/w_all.qc create mode 100644 qcsrc/common/weapons/weapons.qh diff --git a/qcsrc/common/weapons/w_crylink.qc b/qcsrc/common/weapons/crylink.qc similarity index 100% rename from qcsrc/common/weapons/w_crylink.qc rename to qcsrc/common/weapons/crylink.qc diff --git a/qcsrc/common/weapons/w_electro.qc b/qcsrc/common/weapons/electro.qc similarity index 100% rename from qcsrc/common/weapons/w_electro.qc rename to qcsrc/common/weapons/electro.qc diff --git a/qcsrc/common/weapons/w_electro.qh b/qcsrc/common/weapons/electro.qh similarity index 100% rename from qcsrc/common/weapons/w_electro.qh rename to qcsrc/common/weapons/electro.qh diff --git a/qcsrc/common/weapons/w_fireball.qc b/qcsrc/common/weapons/fireball.qc similarity index 100% rename from qcsrc/common/weapons/w_fireball.qc rename to qcsrc/common/weapons/fireball.qc diff --git a/qcsrc/common/weapons/w_grenadelauncher.qc b/qcsrc/common/weapons/grenadelauncher.qc similarity index 100% rename from qcsrc/common/weapons/w_grenadelauncher.qc rename to qcsrc/common/weapons/grenadelauncher.qc diff --git a/qcsrc/common/weapons/w_hagar.qc b/qcsrc/common/weapons/hagar.qc similarity index 100% rename from qcsrc/common/weapons/w_hagar.qc rename to qcsrc/common/weapons/hagar.qc diff --git a/qcsrc/common/weapons/w_hlac.qc b/qcsrc/common/weapons/hlac.qc similarity index 100% rename from qcsrc/common/weapons/w_hlac.qc rename to qcsrc/common/weapons/hlac.qc diff --git a/qcsrc/common/weapons/w_hook.qc b/qcsrc/common/weapons/hook.qc similarity index 100% rename from qcsrc/common/weapons/w_hook.qc rename to qcsrc/common/weapons/hook.qc diff --git a/qcsrc/common/weapons/w_laser.qc b/qcsrc/common/weapons/laser.qc similarity index 100% rename from qcsrc/common/weapons/w_laser.qc rename to qcsrc/common/weapons/laser.qc diff --git a/qcsrc/common/weapons/w_lightning.qc b/qcsrc/common/weapons/lightning.qc similarity index 100% rename from qcsrc/common/weapons/w_lightning.qc rename to qcsrc/common/weapons/lightning.qc diff --git a/qcsrc/common/weapons/w_lightning.qh b/qcsrc/common/weapons/lightning.qh similarity index 100% rename from qcsrc/common/weapons/w_lightning.qh rename to qcsrc/common/weapons/lightning.qh diff --git a/qcsrc/common/weapons/w_minelayer.qc b/qcsrc/common/weapons/minelayer.qc similarity index 100% rename from qcsrc/common/weapons/w_minelayer.qc rename to qcsrc/common/weapons/minelayer.qc diff --git a/qcsrc/common/weapons/w_minstanex.qc b/qcsrc/common/weapons/minstanex.qc similarity index 100% rename from qcsrc/common/weapons/w_minstanex.qc rename to qcsrc/common/weapons/minstanex.qc diff --git a/qcsrc/common/weapons/w_nex.qc b/qcsrc/common/weapons/nex.qc similarity index 100% rename from qcsrc/common/weapons/w_nex.qc rename to qcsrc/common/weapons/nex.qc diff --git a/qcsrc/common/weapons/w_porto.qc b/qcsrc/common/weapons/porto.qc similarity index 100% rename from qcsrc/common/weapons/w_porto.qc rename to qcsrc/common/weapons/porto.qc diff --git a/qcsrc/common/weapons/w_rifle.qc b/qcsrc/common/weapons/rifle.qc similarity index 100% rename from qcsrc/common/weapons/w_rifle.qc rename to qcsrc/common/weapons/rifle.qc diff --git a/qcsrc/common/weapons/w_rocketlauncher.qc b/qcsrc/common/weapons/rocketlauncher.qc similarity index 100% rename from qcsrc/common/weapons/w_rocketlauncher.qc rename to qcsrc/common/weapons/rocketlauncher.qc diff --git a/qcsrc/common/weapons/w_seeker.qc b/qcsrc/common/weapons/seeker.qc similarity index 100% rename from qcsrc/common/weapons/w_seeker.qc rename to qcsrc/common/weapons/seeker.qc diff --git a/qcsrc/common/weapons/w_shotgun.qc b/qcsrc/common/weapons/shotgun.qc similarity index 100% rename from qcsrc/common/weapons/w_shotgun.qc rename to qcsrc/common/weapons/shotgun.qc diff --git a/qcsrc/common/weapons/w_tuba.qc b/qcsrc/common/weapons/tuba.qc similarity index 100% rename from qcsrc/common/weapons/w_tuba.qc rename to qcsrc/common/weapons/tuba.qc diff --git a/qcsrc/common/weapons/w_uzi.qc b/qcsrc/common/weapons/uzi.qc similarity index 100% rename from qcsrc/common/weapons/w_uzi.qc rename to qcsrc/common/weapons/uzi.qc diff --git a/qcsrc/common/weapons/w_all.qc b/qcsrc/common/weapons/w_all.qc deleted file mode 100644 index 46af3565e..000000000 --- a/qcsrc/common/weapons/w_all.qc +++ /dev/null @@ -1,22 +0,0 @@ -// ONLY EVER ADD NEW WEAPONS AT THE END. IF YOU REMOVE ONE, PUT THE LAST ONE ON -// ITS PLACE. THIS IS TO AVOID UNNECESSARY RENUMBERING OF WEAPON IMPULSES. -// IF YOU DISREGARD THIS NOTICE, I'LL KILL YOU WITH THE @!#%'N TUBA -#include "w_laser.qc" -#include "w_shotgun.qc" -#include "w_uzi.qc" -#include "w_grenadelauncher.qc" -#include "w_minelayer.qc" -#include "w_electro.qc" -#include "w_lightning.qc" -#include "w_crylink.qc" -#include "w_nex.qc" -#include "w_hagar.qc" -#include "w_rocketlauncher.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/weapons.qh b/qcsrc/common/weapons/weapons.qh new file mode 100644 index 000000000..bd698b007 --- /dev/null +++ b/qcsrc/common/weapons/weapons.qh @@ -0,0 +1,22 @@ +// ONLY EVER ADD NEW WEAPONS AT THE END. IF YOU REMOVE ONE, PUT THE LAST ONE ON +// ITS PLACE. THIS IS TO AVOID UNNECESSARY RENUMBERING OF WEAPON IMPULSES. +// IF YOU DISREGARD THIS NOTICE, I'LL KILL YOU WITH THE @!#%'N TUBA +#include "laser.qc" +#include "shotgun.qc" +#include "uzi.qc" +#include "grenadelauncher.qc" +#include "minelayer.qc" +#include "electro.qc" +#include "lightning.qc" +#include "crylink.qc" +#include "nex.qc" +#include "hagar.qc" +#include "rocketlauncher.qc" +#include "porto.qc" +#include "minstanex.qc" +#include "hook.qc" +#include "hlac.qc" +#include "tuba.qc" +#include "rifle.qc" +#include "fireball.qc" +#include "seeker.qc" -- 2.39.2