JS command perms

This commit is contained in:
Jesse Boyd
2018-08-22 17:12:41 +10:00
parent 4651d5e36b
commit 9927cde616
5 changed files with 18 additions and 2 deletions

View File

@ -47,4 +47,8 @@ public class CommandLocals {
return locals.put(key, value);
}
public Object putIfAbsent(Object key, Object value) {
return locals.putIfAbsent(key, value);
}
}