This commit is contained in:
kookroach
2021-04-05 03:30:17 +02:00
parent dcafea009c
commit bf807e56f5
2 changed files with 3 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ export default class InputHelper {
private valueGetter(): Promise<string> {
return new Promise(resolve => {
while (this.value === undefined) {
mp.game.waitAsync(1);
mp.game.wait(1);
}
resolve(this.value);
});