Skip to content

Commit

Permalink
yea
Browse files Browse the repository at this point in the history
  • Loading branch information
FalloutFalcon committed Jun 4, 2024
1 parent ad0da70 commit c0e24a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions code/modules/mod/mod_ai.dm
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

/obj/item/mod/control/proc/insert_pai(mob/user, obj/item/paicard/card)
if(ai)
balloon_alert(user, UNLINT("AI already installed!"))
balloon_alert(user, "ai already installed!")
return
if(!card.pai || !card.pai.mind)
balloon_alert(user, "pAI unresponsive!")
balloon_alert(user, "pai unresponsive!")
return
balloon_alert(user, "transferring to suit...")
if(!do_after(user, 5 SECONDS, target = src))
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mod/mod_construction.dm
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
balloon_alert(user, "boots added")
return
playsound(src, 'sound/machines/click.ogg', 30, TRUE)
balloon_alert(user, "You fit [part] onto [src].")
balloon_alert(user, "you fit [part] onto [src].")
boots = part
step = BOOTS_STEP
else if(part.tool_behaviour == TOOL_CROWBAR) //Deconstruct
Expand Down
2 changes: 1 addition & 1 deletion code/modules/mod/modules/modules_maint.dm
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
if(prob(min(num_sheets_dispensed * 2, 30)))
if(crisp_paper in mod.wearer.held_items)
mod.wearer.dropItemToGround(crisp_paper, force = TRUE)
crisp_paper.balloon_alert(mod.wearer, "PC LOAD LETTER!")
crisp_paper.balloon_alert(mod.wearer, "pc load letter!")
crisp_paper.visible_message(span_warning("[crisp_paper] bursts into flames, it's too crisp!"))
crisp_paper.fire_act(1000, 100)

Expand Down

0 comments on commit c0e24a4

Please sign in to comment.