Class: SSCBot::ChatLog::RemoteMessage
- Inherits:
-
PrivateMessage
- Object
- Message
- PlayerMessage
- PrivateMessage
- SSCBot::ChatLog::RemoteMessage
- Defined in:
- lib/ssc.bot/chat_log/messages.rb
Overview
Constant Summary
Constants inherited from Message
Instance Attribute Summary
Attributes inherited from PlayerMessage
Attributes inherited from Message
Instance Method Summary collapse
-
#initialize(line, own:, squad:, name:, message:) ⇒ RemoteMessage
constructor
A new instance of RemoteMessage.
Methods inherited from Message
Constructor Details
#initialize(line, own:, squad:, name:, message:) ⇒ RemoteMessage
Returns a new instance of RemoteMessage.
163 164 165 166 167 168 |
# File 'lib/ssc.bot/chat_log/messages.rb', line 163 def initialize(line,own:,squad:,name:,message:) super(line,type: :remote,name: name,message: ) @own = own @squad = squad end |