mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-20 15:01:17 +00:00
Fix property getter
This commit is contained in:
parent
54ba87f900
commit
90f29f789f
1 changed files with 1 additions and 1 deletions
|
|
@ -64,7 +64,7 @@ module.exports.permissions = ()=>{
|
|||
else throw Error("No default permission group. Cannot continue.");
|
||||
}
|
||||
|
||||
return perms.groups[group][property] | "";
|
||||
return perms.groups[group][property] || "";
|
||||
}
|
||||
permissions.getPrefix = (player)=>{
|
||||
return permissions._getProperty(player, "prefix");
|
||||
|
|
|
|||
Loading…
Reference in a new issue