]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/weapons/spawning.qc
Fix a minor typo in a comment
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / weapons / spawning.qc
index b14579e24e3bbae667b168caa110e2b7ad7fdd81..0685062f58787167e8a463576ba98638becf72eb 100644 (file)
@@ -61,8 +61,7 @@ void weapon_defaultspawnfunc(entity this, Weapon wpn)
                                {
                                        entity replacement = spawn();
                                        Item_CopyFields(this, replacement);
-                                       // copyentity is an engine function which unintentionally copies intrusive list data
-                                       // DO NOTE USE, causes #2792
+                                       // DO NOT USE, causes #2792
                                        //copyentity(this, replacement);
                                        replacement.m_isreplaced = true;
                                        weapon_defaultspawnfunc(replacement, wep);