Debug info is summoned with F3, not F2

This commit is contained in:
Drew DeVault 2015-09-24 22:41:48 -04:00
parent 49fb3435da
commit b699ad0ab6

View File

@ -26,7 +26,7 @@ namespace TrueCraft.Client.Modules
{ {
switch (e.Key) switch (e.Key)
{ {
case Keys.F2: case Keys.F3:
return true; return true;
} }
return false; return false;
@ -36,7 +36,7 @@ namespace TrueCraft.Client.Modules
{ {
switch (e.Key) switch (e.Key)
{ {
case Keys.F2: case Keys.F3:
Enabled = !Enabled; Enabled = !Enabled;
return true; return true;
} }