fix lint (#6568)
This commit is contained in:
		
							parent
							
								
									1c200c9b94
								
							
						
					
					
						commit
						9415618992
					
				
					 1 changed files with 2 additions and 3 deletions
				
			
		|  | @ -44,9 +44,8 @@ export function createAiScriptEnv(vm, opts) { | |||
| 
 | ||||
| export function createPluginEnv(vm, opts) { | ||||
| 	const config = new Map(); | ||||
| 	for (const key in opts.plugin.config) { | ||||
| 		const val = opts.plugin.configData[key] || opts.plugin.config[key].default; | ||||
| 		config.set(key, jsToVal(val)); | ||||
| 	for (const [k, v] of Object.entries(opts.plugin.config)) { | ||||
| 		config.set(k, jsToVal(opts.plugin.configData[k] || v.default)); | ||||
| 	} | ||||
| 
 | ||||
| 	return { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue