Added message saving back to compiler, tweaked various messages, fixed typo of constant, fixed missing attr_reader

This commit is contained in:
Maruno17
2023-04-15 20:29:47 +01:00
parent af5256ae0f
commit b9bf3e8b83
30 changed files with 135 additions and 142 deletions

View File

@@ -467,14 +467,14 @@ MenuHandlers.add(:battle_debug_menu, :position_effects, {
if battler && !battler.fainted?
text = "[#{i}] #{battler.name}"
else
text = _INTL("[#{i}] (empty)", i)
text = "[#{i}] " + _INTL("(empty)")
end
if battler.pbOwnedByPlayer?
text += " (yours)"
text += " " + _INTL("(yours)")
elsif battle.opposes?(i)
text += " (opposing)"
text += " " + _INTL("(opposing)")
else
text += " (ally's)"
text += " " + _INTL("(ally's)")
end
cmds.push(text)
end