RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

fix for elven wash basin east

Crowley62

Sorceror
fix for elven wash basin east

When you add a washbasin it comes out backwards. In Scripts/Items/Addons/ElvenWashbasinEastAddon.cs change
Code:
AddComponent( new AddonComponent( 0x30DF ), 0, 0, 0 );
AddComponent( new AddonComponent( 0x30E0 ), 0, -1, 0 );
to this
Code:
AddComponent( new AddonComponent( 0x30E0 ), 0, 0, 0 );
AddComponent( new AddonComponent( 0x30DF ), 0, -1, 0 );
this will fix it appearing backwards :)
 

Vindekator

Sorceror
Now I don't have to look for it

Thanks for finding this. I noticed it the other day but hadn't gotten around to looking for it.
 
Top