summaryrefslogtreecommitdiff
path: root/DiscoBot/Characters/Character.cs
diff options
context:
space:
mode:
Diffstat (limited to 'DiscoBot/Characters/Character.cs')
-rw-r--r--DiscoBot/Characters/Character.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/DiscoBot/Characters/Character.cs b/DiscoBot/Characters/Character.cs
index c092154..86e8b3a 100644
--- a/DiscoBot/Characters/Character.cs
+++ b/DiscoBot/Characters/Character.cs
@@ -22,12 +22,12 @@
this.PropTable.Add("KO", "Konstitution");
this.PropTable.Add("KK", "Körperkraft");
- this.Post_process(); // calculate derived values
}
public Character(string path) : this()
{
this.Load(path); // load
+ this.Post_process(); // calculate derived values
}
public Character(Character c, string name, int stDv = 2) : this()
@@ -52,6 +52,8 @@
{
this.Kampftalente.Add(new KampfTalent(i.Name, i.At + (int)Math.Round(RandomMisc.Random(stDv)), i.Pa + (int)Math.Round(RandomMisc.Random(stDv))));
}
+
+ this.Post_process(); // calculate derived values
}
public string Name { get; set; } // char name
@@ -139,7 +141,7 @@
if (tap < 0)
{
- SoundEffects.Play(Sound.Wrong).Wait();
+ //SoundEffects.Play(Sound.Wrong).Wait();
}
output.AppendFormat(" tap: {0,2}", tap);