Miscellaneous Tweaks (#4362)

Overview
This is just a misc fix PR to minor annoyances I encountered while playing on the server. This fixes the following:

Resisting from a chair unrestrained no longer adds a cooldown to activating objects.
Action figures are no longer massive, and only take up 1 slot in your inventory.
Boxing gloves can now be worn by any race.
The ore summoner can only move up to 10 ore at a time.
This commit is contained in:
BurgerLUA
2018-03-18 00:50:46 +02:00
committed by Erki
parent a77a96cbe4
commit 7d83324a27
5 changed files with 42 additions and 27 deletions
+4 -1
View File
@@ -1127,10 +1127,13 @@ var/list/total_extraction_beacons = list()
/obj/item/weapon/oreportal/attack_self(mob/user)
user << "<span class='info'>You pulse the ore summoner.</span>"
var/limit = 10
for(var/obj/item/weapon/ore/O in orange(7,user))
if(limit <= 0)
break
single_spark(O.loc)
do_teleport(O, user, 0)
limit -= 1
CHECK_TICK
/******************************Sculpting*******************************/