From c2f7a28d79904a5ac11d941ee67090af5bd5ae8f Mon Sep 17 00:00:00 2001 From: Allanis Date: Fri, 7 Mar 2014 23:39:34 +0000 Subject: [PATCH] [Remove] Removed a warning when attempting to sell a currently active secondary weapon. --- src/pilot.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/pilot.c b/src/pilot.c index 565818b..f917f58 100644 --- a/src/pilot.c +++ b/src/pilot.c @@ -539,8 +539,6 @@ void pilot_setSecondary(Pilot* p, const char* secondary) { return; } } - WARN("Attempted to set pilot '%s' secondary weapon to non-existing '%s'", - p->name, secondary); p->secondary = NULL; p->ammo = NULL; }