r3035 - trunk/data/qcsrc/server

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Dec 18 10:27:37 EST 2007


Author: div0
Date: 2007-12-18 10:27:35 -0500 (Tue, 18 Dec 2007)
New Revision: 3035

Modified:
   trunk/data/qcsrc/server/cl_weaponsystem.qc
Log:
tag_weapon? No, Q3A uses that for some RANDOM PLACE INSIDE THE MODEL. Use tag_attachweaponhere until further notice.


Modified: trunk/data/qcsrc/server/cl_weaponsystem.qc
===================================================================
--- trunk/data/qcsrc/server/cl_weaponsystem.qc	2007-12-18 13:33:25 UTC (rev 3034)
+++ trunk/data/qcsrc/server/cl_weaponsystem.qc	2007-12-18 15:27:35 UTC (rev 3035)
@@ -219,7 +219,8 @@
 		else
 			self.model = "";
 
-		if((tag_found = gettagindex(self.owner, "tag_weapon")))
+		//if((tag_found = gettagindex(self.owner, "tag_weapon")))
+		if((tag_found = gettagindex(self.owner, "tag_attachweaponhere"))) // can't use tag_weapon because Q3A uses it for some random place INSIDE the model
 		{
 			self.tag_index = tag_found;
 			self.tag_entity = self.owner;




More information about the nexuiz-commits mailing list