From 0301e2e947ea01151d384a485a4782d24a4eaad2 Mon Sep 17 00:00:00 2001 From: Derxwna Kapsyla Date: Sat, 31 Oct 2020 11:50:52 -0400 Subject: [PATCH] Tweak: Added a wait to the Pokemon obtained message for accuracy (#54) --- .../020_System and utilities/004_PSystem_PokemonUtilities.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Data/Scripts/020_System and utilities/004_PSystem_PokemonUtilities.rb b/Data/Scripts/020_System and utilities/004_PSystem_PokemonUtilities.rb index 725f808e0..e6eee895d 100644 --- a/Data/Scripts/020_System and utilities/004_PSystem_PokemonUtilities.rb +++ b/Data/Scripts/020_System and utilities/004_PSystem_PokemonUtilities.rb @@ -77,7 +77,7 @@ def pbAddPokemon(pokemon,level=nil,seeform=true) pokemon = pbNewPkmn(pokemon,level) end speciesname = PBSpecies.getName(pokemon.species) - pbMessage(_INTL("\\me[Pkmn get]{1} obtained {2}!\1",$Trainer.name,speciesname)) + pbMessage(_INTL("{1} obtained {2}!\\me[Pkmn get]\\wtnp[80]\1",$Trainer.name,speciesname)) pbNicknameAndStore(pokemon) pbSeenForm(pokemon) if seeform return true @@ -113,7 +113,7 @@ def pbAddToParty(pokemon,level=nil,seeform=true) pokemon = pbNewPkmn(pokemon,level) end speciesname = PBSpecies.getName(pokemon.species) - pbMessage(_INTL("\\me[Pkmn get]{1} obtained {2}!\1",$Trainer.name,speciesname)) + pbMessage(_INTL("{1} obtained {2}!\\me[Pkmn get]\\wtnp[80]\1",$Trainer.name,speciesname)) pbNicknameAndStore(pokemon) pbSeenForm(pokemon) if seeform return true