From 191396957865456e488d6f4aa270a5f21f3fcfb1 Mon Sep 17 00:00:00 2001 From: FalseIncarnate Date: Thu, 24 Nov 2016 10:39:30 -0500 Subject: [PATCH] minor styling fixes --- code/modules/arcade/mob_hunt/battle_computer.dm | 2 +- code/modules/arcade/mob_hunt/mob_cards.dm | 2 +- code/modules/pda/mob_hunt_game_app.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/arcade/mob_hunt/battle_computer.dm b/code/modules/arcade/mob_hunt/battle_computer.dm index c2593dadf3d..89fddf85db8 100644 --- a/code/modules/arcade/mob_hunt/battle_computer.dm +++ b/code/modules/arcade/mob_hunt/battle_computer.dm @@ -55,7 +55,7 @@ mob_hunt_server.blue_terminal = null if(avatar) qdel(avatar) - ..() + return ..() /obj/machinery/computer/mob_battle_terminal/attackby(obj/item/O, mob/user) if(istype(O, /obj/item/weapon/nanomob_card)) diff --git a/code/modules/arcade/mob_hunt/mob_cards.dm b/code/modules/arcade/mob_hunt/mob_cards.dm index 578f928fe7e..16aea7ba55f 100644 --- a/code/modules/arcade/mob_hunt/mob_cards.dm +++ b/code/modules/arcade/mob_hunt/mob_cards.dm @@ -39,5 +39,5 @@ /obj/item/weapon/storage/box/nanomob_booster_pack/New() ..() - for(var/i = 1; i < 6; i++) + for(var/i in 1 to 6) new /obj/item/weapon/nanomob_card/booster(src) \ No newline at end of file diff --git a/code/modules/pda/mob_hunt_game_app.dm b/code/modules/pda/mob_hunt_game_app.dm index f41d046ae5c..9b8e3225976 100644 --- a/code/modules/pda/mob_hunt_game_app.dm +++ b/code/modules/pda/mob_hunt_game_app.dm @@ -88,7 +88,7 @@ wild_captures++ return 1 -/datum/data/pda/app/mob_hunter_game/update_ui(mob/user as mob, list/data) +/datum/data/pda/app/mob_hunter_game/update_ui(mob/user, list/data) if(!mob_hunt_server || !(src in mob_hunt_server.connected_clients)) data["connected"] = 0 else