read a .we minetest schema

- use ground has maze walls
This commit is contained in:
philippe lhardy
2020-11-04 22:12:17 +01:00
parent 6402766371
commit 52a2d3f1e3
13 changed files with 430 additions and 16 deletions

View File

@@ -22,8 +22,8 @@ public class LuaTuple
public String addInMap(HashMap<String,Object> map)
{
String key = items.get(0).toString();
Object value = items.get(1);
String key = (String) items.get(0).wrapToJava();
Object value = items.get(1).wrapToJava();
map.put(key,value);