mirror of
https://github.com/Creators-of-Create/Create.git
synced 2024-11-11 04:22:00 +01:00
fixed client to-desktop crash with ":" in schematic name
This commit is contained in:
parent
1f06acb497
commit
7fea4a66a0
1 changed files with 1 additions and 0 deletions
|
@ -51,6 +51,7 @@ public class FilesHelper {
|
||||||
return Lang.asId(name)
|
return Lang.asId(name)
|
||||||
.replace(' ', '_')
|
.replace(' ', '_')
|
||||||
.replace('!', '_')
|
.replace('!', '_')
|
||||||
|
.replace(':', '_')
|
||||||
.replace('?', '_');
|
.replace('?', '_');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue