]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/mutators/mutator/nades/nades.qc
Revert hiding of the weapon entity until a clean solution can be applied
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / mutators / mutator / nades / nades.qc
index 2da326ac8ad9be4b585b68ec93b7929dcf0e0d01..b4a3066fb04a17621faa46e165db9160320e9308 100644 (file)
@@ -975,10 +975,6 @@ void toss_nade(entity e, bool set_owner, vector _velocity, float _time)
        if(set_owner)
                _nade.realowner = e;
 
-       .entity weaponentity = _nade.weaponentity_fld;
-       if(e.(weaponentity))
-               e.(weaponentity).nodrawtoclient = e; // restore it!
-
        settouch(_nade, nade_touch);
        _nade.spawnshieldtime = time + 0.1; // prevent instantly picking up again
        SetResourceAmount(_nade, RESOURCE_HEALTH, autocvar_g_nades_nade_health);
@@ -1108,8 +1104,6 @@ void spawn_held_nade(entity player, entity nowner, float ntime, int ntype, strin
 
        setmodel(fn, MDL_NADE_VIEW);
        setattachment(fn, player.(weaponentity), "");
-       if(player.(weaponentity))
-               player.(weaponentity).nodrawtoclient = NULL; // temporarily allow server side view model
        fn.realowner = fn.owner = player;
        fn.colormod = Nades_from(STAT(NADE_BONUS_TYPE, n)).m_color;
        fn.colormap = player.colormap;