mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-07 21:24:59 +00:00
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:
@@ -41,7 +41,7 @@ module Kernel
|
||||
|
||||
def echoln(string)
|
||||
echo string
|
||||
echo "\r\n"
|
||||
echo "\n"
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user