diff --git a/code/game/objects/items/weapons/grenades/bananade.dm b/code/game/objects/items/weapons/grenades/bananade.dm index 04827b4c8d7..11504ffde14 100644 --- a/code/game/objects/items/weapons/grenades/bananade.dm +++ b/code/game/objects/items/weapons/grenades/bananade.dm @@ -57,7 +57,7 @@ /obj/item/grenade/bananade/casing/screwdriver_act(mob/living/user, obj/item/I) if(!deliveryamt) - to_chat(user, "You need to add banana peels before you can ready the grenade!.") + to_chat(user, "You need to add banana peels before you can ready the grenade!") return TRUE var/obj/item/grenade/bananade/G = new /obj/item/grenade/bananade diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 663d141bf2f..f994aeaa9ac 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -1331,7 +1331,7 @@ if(mode == FALSE) to_chat(user, "You remove the screws around the power connection.") - else if(mode == 1) + else if(mode == TRUE) to_chat(user, "You attach the screws around the power connection.") I.play_tool_sound(src) mode = !mode