OpenIV-PackageFormat icon indicating copy to clipboard operation
OpenIV-PackageFormat copied to clipboard

Mistyping

Open phongvants123 opened this issue 4 years ago • 1 comments

xpath='/CHandlingDataMgr/HandlingData/Item[@type="CHandlingData"]/handlingName[.="BUFFALO"]/../fMass'>

It should be

xpath="/CHandlingDataMgr/HandlingData/Item[@type="CHandlingData"]/handlingName[.="BUFFALO"]/../fMass">

With Double quotation marks "", not Single ''

phongvants123 avatar Apr 01 '21 00:04 phongvants123

<xml path="common\data\handling.meta">
	<replace xpath='/CHandlingDataMgr/HandlingData/Item[@type="CHandlingData"]/handlingName[.="BUFFALO"]/../fMass'>
		<fMass value="999999.000"/>
	</replace>
</xml>

should be

<xml path="common\data\handling.meta">
	<replace xpath="/CHandlingDataMgr/HandlingData/Item[@type='CHandlingData']/handlingName[.='BUFFALO']/../fMass">
		<fMass value="999999.000"/>
	</replace>
</xml>

i changed the quotation marks to apostrophes .and it worked perfectly

phongvants123 avatar Jun 15 '21 10:06 phongvants123