Fix BaseComponent calling the wrong method when inheriting from another BaseComponent (Fixes #1049)

This commit is contained in:
Thinkofdeath 2014-06-08 13:07:42 +01:00
parent 9226df86f0
commit 3c938c03c7

View File

@ -71,7 +71,7 @@ public abstract class BaseComponent
setColor( old.getColorRaw() );
setBold( old.isBoldRaw() );
setItalic( old.isItalicRaw() );
setUnderlined( old.isUnderlined() );
setUnderlined( old.isUnderlinedRaw() );
setStrikethrough( old.isStrikethroughRaw() );
setObfuscated( old.isObfuscatedRaw() );
setClickEvent( old.getClickEvent() );