More fixes

- Add list of enabled plugins to the diagnostics
- Fix broken image permormance in the diagnostics
- Fix parsing undefined values in score storage
- Do not error when verticalText or layeredText gets undefined text
This commit is contained in:
KatieFrogs
2022-03-04 01:41:56 +03:00
parent 89b159e33a
commit 0781c9b120
4 changed files with 11 additions and 6 deletions

View File

@@ -299,7 +299,7 @@
verticalText(config){
var ctx = config.ctx
var inputText = config.text.toString()
var inputText = "" + config.text
var mul = config.fontSize / 40
var ura = false
var r = this.regex
@@ -623,7 +623,7 @@
layeredText(config, layers){
var ctx = config.ctx
var inputText = config.text.toString()
var inputText = "" + config.text
var mul = config.fontSize / 40
var ura = false
var r = this.regex