mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Fix boiled waterbottles could not be drank
Thx Aschealder for reporting
This commit is contained in:
@@ -94,6 +94,11 @@ class ItemPlasticWaterBottleBoiled : ItemWaterBottle
|
|||||||
|
|
||||||
class ItemActions
|
class ItemActions
|
||||||
{
|
{
|
||||||
|
class Consume
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_DRINK2;
|
||||||
|
script = "spawn player_consume";
|
||||||
|
};
|
||||||
class Crafting
|
class Crafting
|
||||||
{
|
{
|
||||||
text = $STR_CRAFTING_HERBALDRINK;
|
text = $STR_CRAFTING_HERBALDRINK;
|
||||||
|
|||||||
@@ -16,9 +16,7 @@ class ItemWaterBottle : FoodDrink
|
|||||||
|
|
||||||
class ItemActions : ItemActions
|
class ItemActions : ItemActions
|
||||||
{
|
{
|
||||||
class Consume : Consume
|
class Consume : Consume {};
|
||||||
{
|
|
||||||
};
|
|
||||||
|
|
||||||
class Empty
|
class Empty
|
||||||
{
|
{
|
||||||
@@ -47,6 +45,11 @@ class ItemWaterBottleBoiled : ItemWaterBottle
|
|||||||
|
|
||||||
class ItemActions
|
class ItemActions
|
||||||
{
|
{
|
||||||
|
class Consume
|
||||||
|
{
|
||||||
|
text = $STR_ACTIONS_DRINK2;
|
||||||
|
script = "spawn player_consume";
|
||||||
|
};
|
||||||
class Crafting
|
class Crafting
|
||||||
{
|
{
|
||||||
text = $STR_CRAFTING_HERBALDRINK;
|
text = $STR_CRAFTING_HERBALDRINK;
|
||||||
|
|||||||
Reference in New Issue
Block a user