2025-01-24 10:22:13 -08:00
|
|
|
class LeaderboardController < ApplicationController
|
|
|
|
def index
|
2025-01-25 17:37:01 -08:00
|
|
|
@players = Player.where(main_player_id: nil).order(purse: :desc)
|
2025-02-27 15:47:41 -08:00
|
|
|
@lootban = Lootban.first&.name || "Nobody... yet"
|
2025-01-24 10:22:13 -08:00
|
|
|
end
|
|
|
|
end
|