Quick fix for last commit with copying/pasting.

This commit is contained in:
UnknownShadow200 2016-01-09 07:01:44 +11:00
parent 3ddf6b003b
commit 1c667f7948

View File

@ -40,7 +40,7 @@ namespace ClassicalSharp {
else if( game.Network.ServerSupportsFullCP437 &&
key == game.InputHandler.Keys[KeyBinding.ExtendedInput] )
altText.SetActive( !altText.Active );
else if( !OtherKey( key ) && controlDown ) return false;
else if( controlDown && !OtherKey( key ) ) return false;
return true;
}