mirror of
https://github.com/overte-org/overte.git
synced 2025-04-08 01:12:48 +02:00
fix syntax error
This commit is contained in:
parent
2d8bb54b93
commit
12e6920a8d
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ var ASSETS_PATH = Script.resolvePath("assets");
|
|||
var TOOLS_PATH = Script.resolvePath("assets/images/tools/");
|
||||
|
||||
function buttonImageURL() {
|
||||
return TOOLS_PATH + (Users.canKick ? 'kick.svg' : 'ignore.svg'));
|
||||
return TOOLS_PATH + (Users.canKick ? 'kick.svg' : 'ignore.svg');
|
||||
}
|
||||
|
||||
// setup the mod button and add it to the toolbar
|
||||
|
|
Loading…
Reference in a new issue