diff options
Diffstat (limited to 'DiscoBot/Characters')
-rw-r--r-- | DiscoBot/Characters/Character.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/DiscoBot/Characters/Character.cs b/DiscoBot/Characters/Character.cs index 86b4bef..34a1037 100644 --- a/DiscoBot/Characters/Character.cs +++ b/DiscoBot/Characters/Character.cs @@ -268,7 +268,8 @@ { this.Vorteile.Add(new Vorteil( reader.GetAttribute("name"), - Convert.ToInt32(reader.GetAttribute("value")))); + // Convert.ToInt32(reader.GetAttribute("value")))); + reader.GetAttribute("value"))); } catch { |