mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-29 07:59:01 +01:00
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:
@@ -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*******************************/
|
||||
|
||||
Reference in New Issue
Block a user