diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-26 13:21:00 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-26 13:21:00 +0300 |
commit | 669a5f22c7ff9c63c1f19bf5fe757e8ac90ced0d (patch) | |
tree | 7fbfb330d11a85ef4dde139bbb87c56ed44e0a0f /src/resources | |
parent | a9f4333410bf9ef9448d3868587271b8e948807b (diff) | |
download | plus-669a5f22c7ff9c63c1f19bf5fe757e8ac90ced0d.tar.gz plus-669a5f22c7ff9c63c1f19bf5fe757e8ac90ced0d.tar.bz2 plus-669a5f22c7ff9c63c1f19bf5fe757e8ac90ced0d.tar.xz plus-669a5f22c7ff9c63c1f19bf5fe757e8ac90ced0d.zip |
eathena: add packet SMSG_HOMUNCULUS_FOOD 0x022f.
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/notifications.h | 10 | ||||
-rw-r--r-- | src/resources/notifytypes.h | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index b4439ada8..dec091468 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -353,7 +353,15 @@ namespace NotifyManager {"mercenary unknown", // TRANSLATORS: notification message N_("Mercenary unknown state."), - NotifyFlags::EMPTY} + NotifyFlags::EMPTY}, + {"homunculus feed ok", + // TRANSLATORS: notification message + N_("Your feed your homunculus."), + NotifyFlags::EMPTY}, + {"homunculus feed failed", + // TRANSLATORS: notification message + N_("You cant feed homunculus, because not have %s."), + NotifyFlags::STRING} }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h index 14ff47265..c1de1d201 100644 --- a/src/resources/notifytypes.h +++ b/src/resources/notifytypes.h @@ -108,6 +108,8 @@ namespace NotifyTypes MERCENARY_FIRED, MERCENARY_RUN, MERCENARY_UNKNOWN, + HOMUNCULUS_FEED_OK, + HOMUNCULUS_FEED_FAIL, TYPE_END }; |