Removed redundant "\r" from various messages, removed usages of BitmapWrapper, fixed Lure Ball error in battles started in the Debug menu, improved Terrain Tag editor, fixed some Compiler errors, enabled vsync, fixed event graphics frozen to the screen when using $game_player.moveto directly.

This commit is contained in:
Maruno17
2023-05-04 21:28:00 +01:00
parent 5f20121e59
commit 48fb8dae73
44 changed files with 362 additions and 398 deletions

View File

@@ -41,7 +41,7 @@ module Kernel
def echoln(string)
echo string
echo "\r\n"
echo "\n"
end
end

View File

@@ -10,10 +10,10 @@ module Deprecation
def warn_method(method_name, removal_version = nil, alternative = nil)
text = _INTL('Usage of deprecated method "{1}" or its alias.', method_name)
unless removal_version.nil?
text += "\r\n" + _INTL("The method is slated to be removed in Essentials {1}.", removal_version)
text += "\n" + _INTL("The method is slated to be removed in Essentials {1}.", removal_version)
end
unless alternative.nil?
text += "\r\n" + _INTL("Use \"{1}\" instead.", alternative)
text += "\n" + _INTL("Use \"{1}\" instead.", alternative)
end
Console.echo_warn text
end