From 3bb48063c901f4bfc835d8b977ac38cc17e55c0c Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Fri, 25 Sep 2015 08:08:44 -0500 Subject: [PATCH] Correct saddle --- common/script/src/content/food/saddle.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/script/src/content/food/saddle.js b/common/script/src/content/food/saddle.js index 76f2c7154c..9be1da34e2 100644 --- a/common/script/src/content/food/saddle.js +++ b/common/script/src/content/food/saddle.js @@ -7,7 +7,11 @@ const CAN_BUY = true; const CAN_DROP = false; let saddle = { - Saddle: { value: 5 }, + Saddle: { + value: 5, + text: t('foodSaddleText'), + notes: t('foodSaddleNotes'), + }, }; setFoodDefaults(saddle, {canBuy: CAN_BUY, canDrop: CAN_DROP});