-
-
Notifications
You must be signed in to change notification settings - Fork 418
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
10 Ваз #13649
base: master
Are you sure you want to change the base?
The head ref may contain hidden characters: "\u0412\u0430\u0437\u044B\u0414\u043B\u044F\u0426\u0432\u0435\u0442\u043E\u0432"
10 Ваз #13649
Conversation
Changelog status: ✔️ |
Убрано насильное изменение интента игрока на Граб чтобы поднять пачку стикеров путём добавления переменной forceGrab что обходит проверку на граб в функции attack_hand
Теперь цветок поднимается из вазы через MouseDrop, а не через attack_hand. Уменьшило лабиринты кода, упростило всё гораздо.
/obj/item/vase/MouseDrop(mob/user) | ||
. = ..() | ||
if(flower && user == usr && !usr.incapacitated() && Adjacent(usr)) | ||
if(ishuman(user)) | ||
user.put_in_hands(flower) | ||
else | ||
flower.forceMove(get_turf(src)) | ||
flower = null | ||
update_icon() | ||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/obj/item/vase/MouseDrop(mob/user) | |
. = ..() | |
if(flower && user == usr && !usr.incapacitated() && Adjacent(usr)) | |
if(ishuman(user)) | |
user.put_in_hands(flower) | |
else | |
flower.forceMove(get_turf(src)) | |
flower = null | |
update_icon() | |
return | |
/obj/item/vase/MouseDrop_T(mob/user) | |
..() | |
user.put_in_hands(flower) | |
flower = null | |
update_icon() |
Как и в ПРе на стикеры
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
А куда дел проверку на flower?
Описание изменений
Добавил 10 ваз для цветов. Изменил спрайты подсолнуха, мака, колокольчика и м'тира чтобы влезали в вазы.
Почему и что этот ПР улучшит
Начинаю парад атомизации своих непропущенных ПРов.
Авторство
AndreyGysev
Чеинжлог
🆑 AndreyGysev