MCPcopy Create free account
hub / github.com/DFHack/dfhack / areItemsChanged

Function areItemsChanged

plugins/remotefortressreader/remotefortressreader.cpp:760–769  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

758}
759
760bool areItemsChanged(std::vector<int> * items)
761{
762 bool result = false;
763 for (size_t i = 0; i < items->size(); i++)
764 {
765 if (isItemChanged(items->at(i)))
766 result = true;
767 }
768 return result;
769}
770
771std::map<int, int> engravingHashes;
772

Callers

nothing calls this directly

Calls 2

isItemChangedFunction · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected