diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index dfc0cce..41b5101 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,6 @@
+v2.4
+- Fixed Rolls: roll position is shown correctly now
+
v2.3
- Added shortened attribute names to use in templates
- Handlebars "concat" helper added
diff --git a/lang/en.json b/lang/en.json
index 7a0f03c..b3d454c 100644
--- a/lang/en.json
+++ b/lang/en.json
@@ -128,7 +128,7 @@
"BITD.RollPartialSuccessPosition": "You do it, but there’s a consequence: you suffer severe harm, a serious complication occurs, you have reduced effect.",
"BITD.RollFailurePositionControlled": "You falter. Press on by seizing a risky opportunity, or withdraw and try a different approach.",
"BITD.RollFailurePositionRisky": "Things go badly. You suffer harm a complication occurs, you end up in a desperate position, you lose this opportunity.",
- "BITD.RollFailurePosition": "It’s the worst outcome. You suffer severe harm, a serious complication occurs, you lose this opportunity for action.",
+ "BITD.RollFailurePositionDesperate": "It’s the worst outcome. You suffer severe harm, a serious complication occurs, you lose this opportunity for action.",
"BITD.PositionControlled": "Controlled",
"BITD.PositionRisky": "Risky",
diff --git a/lang/es.json b/lang/es.json
index de90711..c9309a8 100644
--- a/lang/es.json
+++ b/lang/es.json
@@ -128,7 +128,7 @@
"BITD.RollPartialSuccessPosition": "Lo logras, pero con una consecuencia: sufres un daño grave, se produce una complicación seria, sufres un efecto reducido.",
"BITD.RollFailurePositionControlled": "Vacilas. Sigue intentándolo aprovechando una oportunidad arriesgada abandona para intentarlo con otro enfoque.",
"BITD.RollFailurePositionRisky": "Todo va mal. Sufres daño, se produce una complication, terminas en una situación desesperada, pierdes esta oportunidad.",
- "BITD.RollFailurePosition": "Nada puede ir peor. Sufres un daño grave, se produce una complicación seria, pierdes la oportunidad de realizar esta acción.",
+ "BITD.RollFailurePositionDesperate": "Nada puede ir peor. Sufres un daño grave, se produce una complicación seria, pierdes la oportunidad de realizar esta acción.",
"BITD.PositionControlled": "Controlada",
"BITD.PositionRisky": "Arriesgada",
diff --git a/lang/ru.json b/lang/ru.json
index 196b66e..2ad0efd 100644
--- a/lang/ru.json
+++ b/lang/ru.json
@@ -123,7 +123,7 @@
"BITD.RollPartialSuccessPosition": "Всё получилось, но с последствиями: персонаж получает тяжёлые повреждения; происходит серьёзное осложнение; эффективность действия снижается.",
"BITD.RollFailurePositionControlled": "Не получилось. Или отступи и попробуй иной подход, или повтори попытку, но уже в рискованной ситуации.",
"BITD.RollFailurePositionRisky": "Дела идут плохо. Персонаж получает повреждения, происходит осложнение, ситуация становится отчаянной, возможность оказывается упущенной.",
- "BITD.RollFailurePosition": "Случилось худшее. Персонаж получает тяжёлые повреждения, происходит серьёзное осложнение, возможность оказывается упущенной.",
+ "BITD.RollFailurePositionDesperate": "Случилось худшее. Персонаж получает тяжёлые повреждения, происходит серьёзное осложнение, возможность оказывается упущенной.",
"BITD.PositionControlled": "Контролируемая",
"BITD.PositionRisky": "Рискованная",
"BITD.PositionDesperate": "Отчаянная",
diff --git a/module/blades-roll.js b/module/blades-roll.js
index 8f207bb..fec71fd 100644
--- a/module/blades-roll.js
+++ b/module/blades-roll.js
@@ -87,7 +87,7 @@ async function showChatRollMessage(r, zeromode, attribute_name = "", position =
effect_localize = 'BITD.EffectStandard'
}
- let result = await renderTemplate("systems/blades-in-the-dark/templates/blades-roll.html", {rolls: rolls, roll_status: roll_status, attribute_label: attribute_label, position: position_localize, effect: effect_localize});
+ let result = await renderTemplate("systems/blades-in-the-dark/templates/blades-roll.html", {rolls: rolls, roll_status: roll_status, attribute_label: attribute_label, position: position, effect: effect_localize});
let messageData = {
speaker: speaker,
diff --git a/system.json b/system.json
index f62a43e..c934c76 100644
--- a/system.json
+++ b/system.json
@@ -2,7 +2,7 @@
"name": "blades-in-the-dark",
"title": "Blades in the Dark",
"description": "Blades in the dark game system.",
- "version": "2.3",
+ "version": "2.4",
"minimumCoreVersion": "0.6.6",
"compatibleCoreVersion": "0.7.2",
"templateVersion": 1,
@@ -31,8 +31,8 @@
}
],
"url": "https://github.com/megastruktur/foundryvtt-blades-in-the-dark/",
- "manifest": "https://raw.githubusercontent.com/megastruktur/foundryvtt-blades-in-the-dark/2.3/system.json",
- "download": "https://github.com/megastruktur/foundryvtt-blades-in-the-dark/archive/2.3.zip",
+ "manifest": "https://raw.githubusercontent.com/megastruktur/foundryvtt-blades-in-the-dark/2.4/system.json",
+ "download": "https://github.com/megastruktur/foundryvtt-blades-in-the-dark/archive/2.4.zip",
"packs": [
{
"name": "class",
diff --git a/templates/blades-roll.html b/templates/blades-roll.html
index cc163c8..976c16d 100644
--- a/templates/blades-roll.html
+++ b/templates/blades-roll.html
@@ -42,7 +42,7 @@
{{else if (eq position "risky")}}
{{{localize "BITD.RollFailurePositionRisky"}}}
{{else}}
- {{{localize "BITD.RollFailurePosition"}}}
+ {{{localize "BITD.RollFailurePositionDesperate"}}}
{{/if}}