Fixed chat issues on menu close with backspace

This commit is contained in:
hydrant
2018-11-21 17:53:47 +01:00
parent 09f0e5d900
commit 056fe7385f

View File

@@ -96,6 +96,13 @@ mp.events.add('showDutyClothMenu', (hatsArr, topsArr, legsArr, shoesArr) => {
mp.events.callRemote("defaultCharacterCloth");
}
});
dutyMenu.MenuClose.on(() => {
dutyMenu.Visible = false;
mp.gui.chat.activate(true);
mp.events.callRemote("defaultCharacterCloth");
});
});