Break api hook_chat -> on_chat
This commit is contained in:
parent
57dfc76588
commit
1d3076e34b
|
@ -15,7 +15,7 @@ require_relative 'lib/teeworlds-client'
|
|||
|
||||
client = TeeworldsClient.new(verbose: false)
|
||||
|
||||
client.hook_chat do |msg|
|
||||
client.on_chat do |msg|
|
||||
puts "[chat] #{msg}"
|
||||
end
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
|
||||
## TeeworldsClient
|
||||
|
||||
### #hook_chat(&block)
|
||||
### #on_chat(&block)
|
||||
|
||||
**Parameter: block [Block]**
|
||||
|
||||
|
@ -34,7 +34,7 @@ The block takes one parameter of type [ChatMessage](#chatmessage).
|
|||
```ruby
|
||||
client = TeeworldsClient.new
|
||||
|
||||
client.hook_chat do |msg|
|
||||
client.on_chat do |msg|
|
||||
puts "[chat] #{msg}"
|
||||
end
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ client = TeeworldsClient.new(verbose: false)
|
|||
# msg.author.team
|
||||
# msg.author.name
|
||||
# msg.author.clan
|
||||
client.hook_chat do |msg|
|
||||
client.on_chat do |msg|
|
||||
puts "[chat] #{msg}"
|
||||
end
|
||||
|
||||
|
|
|
@ -52,7 +52,7 @@ class TeeworldsClient
|
|||
}
|
||||
end
|
||||
|
||||
def hook_chat(&block)
|
||||
def on_chat(&block)
|
||||
@hooks[:chat] = block
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue