• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Item Bug

soul4soul

Intermediate OT User
Joined
Aug 13, 2007
Messages
1,877
Solutions
3
Reaction score
130
Location
USA
well its not really a bug but just an incorrect description in items.xml

Code:
	<item id="7591" article="a" name="great health potion">
		<attribute key="weight" value="220"/>
		<attribute key="description" value="It can only be wielded properly by knights of level 80 or higher."/>
	</item>

needs to be changed to

Code:
	<item id="7591" article="a" name="great health potion">
		<attribute key="weight" value="220"/>
		<attribute key="description" value="This potion can only be consumed by knights of level 80 or higher."/>
	</item>
 
Back
Top