Grammar fixes (#18342)

* grammar fixes

cant - can't
removes duplicate the from mobs
the pain in your the -
treads on the lit the lit -
what you can cook with this the -

* should fix the merge conflict

0 to FALSE

* unconflicts

panther will have to be fixed at a later date
This commit is contained in:
Lumi
2022-07-17 15:36:03 +01:00
committed by GitHub
parent c2db9cbd65
commit 391a044df1
12 changed files with 49 additions and 49 deletions
+2 -2
View File
@@ -98,7 +98,7 @@
var/datum/ai_law/AL = locate(params["edit_law"]) in owner.laws.all_laws()
// Dont allow non-admins to edit their own malf laws
if(istype(AL, /datum/ai_law/zero) && (!check_rights(R_ADMIN)))
to_chat(usr, "<span class='warning'>You cant edit that law.</span>")
to_chat(usr, "<span class='warning'>You can't edit that law.</span>")
return
if(AL)
var/new_law = sanitize(input(usr, "Enter new law. Leaving the field blank will cancel the edit.", "Edit Law", AL.law))
@@ -111,7 +111,7 @@
var/datum/ai_law/AL = locate(params["delete_law"]) in owner.laws.all_laws()
// Dont allow non-admins to delete their own malf laws
if(istype(AL, /datum/ai_law/zero) && (!check_rights(R_ADMIN)))
to_chat(usr, "<span class='warning'>You cant delete that law.</span>")
to_chat(usr, "<span class='warning'>You can't delete that law.</span>")
return
if(AL && is_malf(usr))
owner.delete_law(AL)