kag-gather 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/kag/gather.rb +2 -2
- data/lib/kag/version.rb +1 -1
- metadata +1 -1
data/lib/kag/gather.rb
CHANGED
@@ -191,12 +191,12 @@ module KAG
|
|
191
191
|
|
192
192
|
team1.each do |p|
|
193
193
|
msg = msg+classes_t1.shift if KAG::Config.instance[:pick_classes]
|
194
|
-
sleep(.5)
|
194
|
+
sleep(0.5)
|
195
195
|
User(p).send(msg+" \x0312Blue Team with: #{team1.join(", ")}") unless p.include?("player")
|
196
196
|
end
|
197
197
|
team2.each do |p|
|
198
198
|
msg = msg+classes_t2.shift if KAG::Config.instance[:pick_classes]
|
199
|
-
sleep(.5)
|
199
|
+
sleep(0.5)
|
200
200
|
User(p).send(msg+" \x0304Red Team with: #{team2.join(", ")}") unless p.include?("player")
|
201
201
|
end
|
202
202
|
|
data/lib/kag/version.rb
CHANGED