From 05aba517c2f4bfce1cfc118b266dd6a095c90885 Mon Sep 17 00:00:00 2001 From: Akkadius Date: Mon, 19 Jan 2015 05:26:05 -0600 Subject: [PATCH] Remove Duplicative MySQL Error: Error updating spawn2 pathing '%s': '%s' --- zone/waypoints.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zone/waypoints.cpp b/zone/waypoints.cpp index ede727c68..99c46e959 100644 --- a/zone/waypoints.cpp +++ b/zone/waypoints.cpp @@ -1264,7 +1264,6 @@ uint32 ZoneDatabase::AddWPForSpawn(Client *client, uint32 spawn2id, float xpos, query = StringFormat("UPDATE spawn2 SET pathgrid = '%i' WHERE id = '%i'", grid_num, spawn2id); results = QueryDatabase(query); if(!results.Success()) - Log.Out(Logs::General, Logs::Error, "Error updating spawn2 pathing '%s': '%s'", query.c_str(), results.ErrorMessage().c_str()); else if(client) client->LogSQL(query.c_str()); }