summaryrefslogtreecommitdiff
path: root/DiscoBot/Commands
diff options
context:
space:
mode:
authorKobert-P <kassiaK@yahoo.de>2018-06-06 15:44:41 +0200
committerKobert-P <kassiaK@yahoo.de>2018-06-06 15:44:41 +0200
commit58d7568f4818feb111d0c8d929f349514043d4a7 (patch)
treeb5ecae7d03ce3c3488751e0dad0c94b7e58bcbd1 /DiscoBot/Commands
parent3860f7313b4f859acb1feb90016cc3656bc24912 (diff)
Split of Aktuell/Basis for LE/AE.
Diffstat (limited to 'DiscoBot/Commands')
-rw-r--r--DiscoBot/Commands/List.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/DiscoBot/Commands/List.cs b/DiscoBot/Commands/List.cs
index 3bd03eb..3e24ee2 100644
--- a/DiscoBot/Commands/List.cs
+++ b/DiscoBot/Commands/List.cs
@@ -41,10 +41,10 @@
res.AddRange(
//character.Eigenschaften.Select(s => s.Key + ":\t " + s.Value));
character.Eigenschaften.Take(9).Select(s => s.Key + ":\t " + s.Value));
- res.Add("LE:\t " + character.Lebenspunkte);
- if (character.Astralpunkte > 0)
+ res.Add("LE:\t " + character.Lebenspunkte_Aktuell + "/" + character.Lebenspunkte_Basis);
+ if (character.Astralpunkte_Basis > 0)
{
- res.Add("AE:\t " + character.Astralpunkte);
+ res.Add("AE:\t " + character.Astralpunkte_Aktuell + "/" + character.Astralpunkte_Basis);
}
break;
case "t":