From d4b5aa0ce7cf63b680c9cdbebe4ca4e99bbb0500 Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Sun, 13 Dec 2020 16:16:12 +0000 Subject: [PATCH] Restored method that was accidentally deleted --- Data/Scripts/011_Data/004_PBTypes_Extra.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Data/Scripts/011_Data/004_PBTypes_Extra.rb b/Data/Scripts/011_Data/004_PBTypes_Extra.rb index b2aebe443..3559a3599 100644 --- a/Data/Scripts/011_Data/004_PBTypes_Extra.rb +++ b/Data/Scripts/011_Data/004_PBTypes_Extra.rb @@ -39,6 +39,10 @@ class PBTypes return GameData::Type.get(type).pseudo_type end + def PBTypes.isPhysicalType?(type) + return GameData::Type.get(type).physical? + end + def PBTypes.isSpecialType?(type) return GameData::Type.get(type).special? end