Fix 40250 classic login and world loading
This commit is contained in:
@@ -57,7 +57,7 @@ func shape(idx: int) -> Dictionary:
|
||||
if e.is_empty():
|
||||
return {}
|
||||
e = e.duplicate()
|
||||
e["path"] = shape_path
|
||||
e["path"] = String(e.get("special_path", shape_path))
|
||||
e["spec_dir"] = _dir
|
||||
return e
|
||||
|
||||
@@ -66,7 +66,7 @@ func hair(idx: int) -> Dictionary:
|
||||
if e.is_empty():
|
||||
return {}
|
||||
e = e.duplicate()
|
||||
e["path"] = hair_path
|
||||
e["path"] = String(e.get("special_path", hair_path))
|
||||
e["spec_dir"] = _dir
|
||||
return e
|
||||
|
||||
@@ -77,6 +77,7 @@ func _entry(g: Dictionary) -> Dictionary:
|
||||
"model": _s(g.get("Model", g.get("local_model", ""))).strip_edges(),
|
||||
"source_skin": _s(g.get("SourceSkin", "")).strip_edges(),
|
||||
"target_skin": _s(g.get("TargetSkin", "")).strip_edges(),
|
||||
"special_path": _s(g.get("SpecialPath", "")).strip_edges(),
|
||||
}
|
||||
|
||||
func _s(v) -> String:
|
||||
|
||||
Reference in New Issue
Block a user