Shortened the default inspect message for everything, corrected the extension of GameData::Encounter

This commit is contained in:
Maruno17
2021-05-09 01:52:55 +01:00
parent 218225cc91
commit 326e2e7929
8 changed files with 19 additions and 18 deletions

View File

@@ -3,6 +3,10 @@
#===============================================================================
class Object
alias full_inspect inspect
def inspect
return "#<#{self.class}>"
end
end
#===============================================================================