Added mp3 support back in, changed layout of townmapgen.html, screenshots now go in Screenshots folder, added "NoName" flag for trainer types

This commit is contained in:
Maruno17
2023-10-14 16:28:37 +01:00
parent d267956c6e
commit 25f85a9a8b
7 changed files with 90 additions and 40 deletions

View File

@@ -16,7 +16,8 @@ class Trainer
end
def full_name
return _INTL("{1} {2}", trainer_type_name, @name)
return @name if has_flag?("NoName")
return "#{trainer_type_name} #{@name}"
end
#=============================================================================