From 58526dedd071515f3ccdec9428c46cbb73b01828 Mon Sep 17 00:00:00 2001 From: KRVH <80194153+KRVH@users.noreply.github.com> Date: Wed, 15 Sep 2021 13:38:58 +1200 Subject: [PATCH] Fixes the spelling on the drug eating verb. (#61388) You should gnaw drugs, not gnaws them. --- code/game/objects/items/drug_items.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/drug_items.dm b/code/game/objects/items/drug_items.dm index 4faa873b0bd..237600841ea 100644 --- a/code/game/objects/items/drug_items.dm +++ b/code/game/objects/items/drug_items.dm @@ -7,7 +7,7 @@ max_volume = 50 eat_time = 1 SECONDS tastes = list("drugs" = 2, "chemicals" = 1) - eatverbs = list("gnaws" = 1) + eatverbs = list("gnaw" = 1) bite_consumption = 10 w_class = WEIGHT_CLASS_TINY preserved_food = TRUE