mirror of
https://github.com/AsgardEternal/squad-js-map-vote.git
synced 2025-01-23 17:13:54 -06:00
made it so that plugin will fall back to defualt vote options when layer is not found
This commit is contained in:
parent
aaa4332826
commit
8fea07655d
12
mapvote.js
12
mapvote.js
@ -272,17 +272,13 @@ export default class MapVote extends BasePlugin
|
||||
//helpers
|
||||
const splitName = name => name.substring(0, name.lastIndexOf("_"));
|
||||
const removeCAF = name => name.replace("CAF_", "");
|
||||
|
||||
if (!this.server.currentLayer)
|
||||
{
|
||||
this.verbose(1, "Error: unknown currentLayer");
|
||||
endVoting();
|
||||
return;
|
||||
}
|
||||
|
||||
let layerString = "";
|
||||
if (this.server.currentLayer)
|
||||
layerString = this.server.currentLayer.layerid
|
||||
|
||||
this.nominations = [];
|
||||
const rulesList = this.voteRules.rules;
|
||||
let layerString = this.server.currentLayer.layerid;
|
||||
let nominationsList = rulesList.default;
|
||||
|
||||
//chomp string until we find a match
|
||||
|
Loading…
x
Reference in New Issue
Block a user