Explorar el Código

Avoid overzealous / leaked copy

This was present to try and avoid deletes; should no longer be
necessary.
nosoop hace 1 año
padre
commit
bf3f136ee0
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      econmanager.cpp

+ 1 - 1
econmanager.cpp

@@ -107,7 +107,7 @@ bool CEconManager::InsertOrReplaceAttribute(KeyValues *pAttribKV) {
 }
 
 bool CEconManager::RegisterAttribute(KeyValues* pAttribKV) {
-	AutoKeyValues kv{pAttribKV->MakeCopy()};
+	AutoKeyValues kv{pAttribKV};
 	std::string attrName = kv->GetString("name");
 	if (attrName.empty()) {
 		attrName = kv->GetString("attribute_class");