Well, there is, but it's not necessarily easy =) As the objects are defined in the XML file it should be possible to open up the file in a text editor and do a find-and-replace. Unless you want to go through each and every entry (which kind of makes it pointless to do this way anyway, but still) it's only really useful if you really want to change every bush of a certain kind from actor to entity, but I assume that's what you want? Now take the following with a grain of salt as I'm not an expert in these things + I haven't tried it, but here's an example from the Azure Coast map: Say you want to replace all "bush_medit_underbrush" with "flora_bush_badlands", then you would do a search for: <Template>actor|props/flora/bush_medit_underbrush.xml</Template>and replace (Or rather "replace all" so you don't have to manually go through each occurence, though it's usually a good thing to do a normal replace first just so you know that everything works - it's not too nice to realize after having replaced three different things hundreds of times that you missed a ">" on the first one or something. In either case it's a good idea to create a copy of the XML file before you edit it, just to be on the safe side ) that with: <Template>gaia/flora_bush_badlands</Template><Player>0</Player>Unless I'm missing something that process should work