Added Setting for item sell prices, added stat for primal reversions, fixed weird movement when jumping across a map connection

This commit is contained in:
Maruno17
2024-01-18 22:20:46 +00:00
parent 8c5911e4a4
commit c5d7d1447b
8 changed files with 25 additions and 7 deletions

View File

@@ -418,3 +418,15 @@ SaveData.register_conversion(:v21_add_bump_stat) do
end
end
end
#===============================================================================
SaveData.register_conversion(:v22_add_primal_reversion_stat) do
essentials_version 22
display_title "Adding a primal reversion stat"
to_value :stats do |stats|
stats.instance_eval do
@primal_reversion_count = 0 if !@primal_reversion_count
end
end
end