/f tnt take inventory space issue fix for new tnt checks

This commit is contained in:
ProSavage 2018-07-20 20:34:33 -05:00
parent e9b080bc9e
commit c5f06f910a
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ public class CmdTnt extends FCommand {
fme.msg(TL.COMMAND_TNT_WIDTHDRAW_NOTENOUGH_SPACE);
return;
}
if (hasAvaliableSlot(me, fullStacks + 1)) {
if (!hasAvaliableSlot(me, fullStacks + 1)) {
fme.msg(TL.COMMAND_TNT_WIDTHDRAW_NOTENOUGH_SPACE);
return;
}