| @@ -49,7 +49,7 @@ namespace NadekoBot.Modules.Pokemon | ||||
|                 return PokemonTypesMain.IntToPokeType(setTypes[(long)id]); | ||||
|             } | ||||
|  | ||||
|             int remainder = (int)id % 16; | ||||
|             int remainder = Math.Abs((int)(id % 16)); | ||||
|  | ||||
|             return PokemonTypesMain.IntToPokeType(remainder); | ||||
|         } | ||||
|   | ||||
| @@ -6,7 +6,7 @@ namespace NadekoBot.Modules.Pokemon.PokemonTypes | ||||
|     class SteelType : PokeType | ||||
|     { | ||||
|         static readonly string name = "STEEL"; | ||||
|         public static int numType = -1; | ||||
|         public static int numType = 16; | ||||
|  | ||||
|         public double Multiplier(PokeType target) | ||||
|         { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user