From: Mircea Kitsune Date: Tue, 25 Oct 2011 12:31:30 +0000 (+0300) Subject: Remove an obvious and useless comment X-Git-Tag: xonotic-v0.6.0~35^2~18^2~175 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a1a8e2c5685ebcac5983e0312b2391e6a7341044;p=xonotic%2Fxonotic-data.pk3dir.git Remove an obvious and useless comment --- diff --git a/qcsrc/server/mutators/sandbox.qc b/qcsrc/server/mutators/sandbox.qc index 42cf8f04c..75e47a083 100644 --- a/qcsrc/server/mutators/sandbox.qc +++ b/qcsrc/server/mutators/sandbox.qc @@ -131,7 +131,7 @@ MUTATOR_HOOKFUNCTION(sandbox_PlayerCommand) e = sandbox_EditObject(); // you can only copy objects you can edit, so this works if(e != world) { - if(self.object_clipboard) // unzone the player's clipboard if it's not empty + if(self.object_clipboard) strunzone(self.object_clipboard); self.object_clipboard = strzone(strcat(e.model, " ", ftos(e.movetype)));