/
githubmirror
/
vgstation13
Обзор
Документация
Войти
/
githubmirror
/
vgstation13
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
Bleeding-Edge
code/game/objects/items/verb_holder.dm
20 строк
519 B
jknpj
Fix dropping changeling verb holder on SoC ACT 2 (#17099)
16 янв 2018, 07:53
16 янв 2018, 07:53
e2f44b6
Код
Авторство
О чём код?
// Workaround for verbs not being sent to mobs with !istype(loc, /turf) // Permission to steal concept from Bay12 granted by Zuhayr 9/17/2015 // (Probably not really needed, but having your ass covered is a good thing.) /** * Verb Holder * * Used for sending verbs to mobs that don't have a turf loc. */ /obj/item/verbs name = "verb holder" desc = "You shouldn't see this." density = FALSE abstract = TRUE /obj/item/verbs/dropped() qdel(src) // Then you just slap verbs in here and send_verbs(mob). // Done.