mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-22 05:17:38 +01:00
Fixes "3" (#4993)
In converting some things from show_message to visible_message, people forgot that the 2nd argument is not range. But is instead, either blind message or user message. So I fixed it. Also added some high lighting and user messages.
This commit is contained in:
@@ -334,7 +334,7 @@
|
||||
|
||||
|
||||
var/mob/living/L = G.affecting
|
||||
visible_message("[user] starts putting [L] into the pod bed.", 3)
|
||||
user.visible_message("<span class='notice'>[user] starts putting [L] into [src].</span>", "<span class='notice'>You start putting [L] into [src].</span>", range = 3)
|
||||
|
||||
if (do_mob(user, L, 30, needhand = 0))
|
||||
var/bucklestatus = L.bucklecheck(user)
|
||||
@@ -378,9 +378,9 @@
|
||||
return
|
||||
|
||||
if(H == user)
|
||||
visible_message("[user] starts climbing into the pod bed.", 3)
|
||||
user.visible_message("<span class='notice'>[user] starts climbing into [src].</span>", "<span class='notice'>You start climbing into [src].</span>", range = 3)
|
||||
else
|
||||
visible_message("[user] starts putting [H.name] into the pod bed.", 3)
|
||||
user.visible_message("<span class='notice'>[user] starts putting [H] into [src].</span>", "<span class='notice'>You start putting [H] into [src].</span>", range = 3)
|
||||
|
||||
if (do_mob(user, H, 30, needhand = 0))
|
||||
if (bucklestatus == 2)
|
||||
|
||||
Reference in New Issue
Block a user