File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed
Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://raw.githubusercontent.com/EmmyLuaLs/emmylua-analyzer-rust/refs/heads/main/crates/emmylua_code_analysis/resources/schema.json" ,
3+ "diagnostics" : {
4+ "enable" : true ,
5+ "disable" : [
6+ " missing-fields"
7+ ]
8+ },
9+ "runtime" : {
10+ "version" : " Lua5.5"
11+ },
12+ "workspace" : {
13+ "library" : [
14+ " ./soluna/docs"
15+ ]
16+ }
17+ }
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ local menu = require "gameplay.menu"
33local setting = require " core.setting"
44local loadsave = require " core.loadsave"
55local flow = require " core.flow"
6+ local soluna = require " soluna"
67
78global print , print_r
89
@@ -47,6 +48,8 @@ return function()
4748
4849 MENU [# MENU + 1 ] = " manual"
4950 MENU [# MENU + 1 ] = " credits"
50- MENU [# MENU + 1 ] = " exit"
51+ if soluna .platform ~= " wasm" then
52+ MENU [# MENU + 1 ] = " exit"
53+ end
5154 return menu (MENU ) or flow .state .startmenu
52- end
55+ end
You can’t perform that action at this time.
0 commit comments