=begin # # Patch for Effect: Shapeshift and Mog's Battle Hud EX. # Place this script below both scripts # =end class Game_Actor attr_reader :face_refreshed alias :th_mog_battle_hud_shapeshift_effect_transform :effect_transform def effect_transform(*args) th_mog_battle_hud_shapeshift_effect_transform(*args) @battler_face_name = "Face_%d" %@actor_id @face_refreshed = true end alias :th_mog_battle_hud_shapeshift_revert_transform :revert_transform def revert_transform(*args) th_mog_battle_hud_shapeshift_revert_transform(*args) @battler_face_name = "Face_%d" %@actor_id @face_refreshed = true end def battler_face_name_checked @face_refreshed = false end end class Battle_Hud_EX alias :th_mog_battle_hud_shapeshift_update_face :update_face def update_face th_mog_battle_hud_shapeshift_update_face refresh_face_name if @actor.face_refreshed end alias :th_mog_battle_hud_shapeshift_refresh_face_name :refresh_face_name def refresh_face_name th_mog_battle_hud_shapeshift_refresh_face_name @actor.battler_face_name_checked end end