Skip to content

Commit

Permalink
Tidying up for v20 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Maruno17 committed May 19, 2022
1 parent 5fb8218 commit 47ad801
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Data/Scripts/001_Settings.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#==============================================================================#
# Pokémon Essentials #
# Version 19.1.dev #
# Version 20 #
# https://github.com/Maruno17/pokemon-essentials #
#==============================================================================#

Expand Down Expand Up @@ -433,6 +433,6 @@ def self.pokedex_names

# DO NOT EDIT THESE!
module Essentials
VERSION = "19.1.dev"
VERSION = "20"
ERROR_TEXT = ""
end
6 changes: 3 additions & 3 deletions Data/Scripts/002_Save data/005_Game_SaveConversions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# numerical IDs to symbolic IDs (for the berry planted and for mulch laid down).
# Since item numerical IDs no longer exist, this conversion needs to have a list
# of them in order to convert planted berry data properly.
SaveData.register_conversion(:v19_2_fix_planted_berry_numerical_ids) do
essentials_version 19.2
SaveData.register_conversion(:v20_fix_planted_berry_numerical_ids) do
essentials_version 20
display_title "Fixing berry plant IDs data"
to_value :global_metadata do |global|
berry_conversion = {
Expand Down Expand Up @@ -231,7 +231,7 @@
#===============================================================================

SaveData.register_conversion(:v20_increment_player_character_id) do
essentials_version 19.1
essentials_version 20
display_title "Incrementing player character ID"
to_value :player do |player|
player.character_ID += 1
Expand Down

0 comments on commit 47ad801

Please sign in to comment.